@Target(value={ANNOTATION_TYPE,METHOD,FIELD}) @Retention(value=RUNTIME) public @interface MapKeyEnumerated
MapKeyEnumerated annotation can be applied to an element collection or relationship of type
java.util.Map, in conjunction with the ElementCollection, OneToMany,
or ManyToMany annotation. If the enumerated type is not specified or the
MapKeyEnumerated annotation is not used, the enumerated type is assumed to be
ORDINAL.
Example:
public enum ProjectStatus {COMPLETE, DELAYED, CANCELLED, IN_PROGRESS}
public enum SalaryRate {JUNIOR, SENIOR, MANAGER, EXECUTIVE}
@Entity public class Employee {
@ManyToMany
public Projects<ProjectStatus, Project> getProjects() {...}
@OneToMany
@MapKeyEnumerated(STRING)
public Map<SalaryRate, Employee> getEmployees() {...}
...
}
ElementCollection,
OneToMany,
ManyToManypublic abstract EnumType value
Copyright © 2020. All rights reserved.