Package jakarta.persistence
Annotation Type Enumerated
-
@Target({METHOD,FIELD}) @Retention(RUNTIME) public @interface Enumerated
Specifies that a persistent property or field should be persisted as a enumerated type. TheEnumerated
annotation may be used in conjunction with theBasic
annotation, or in conjunction with theElementCollection
annotation when the element collection value is of basic type. If the enumerated type is not specified or theEnumerated
annotation is not used, theEnumType
value is assumed to beORDINAL
.Example: public enum EmployeeStatus {FULL_TIME, PART_TIME, CONTRACT} public enum SalaryRate {JUNIOR, SENIOR, MANAGER, EXECUTIVE} @Entity public class Employee { public EmployeeStatus getStatus() {...} ... @Enumerated(STRING) public SalaryRate getPayScale() {...} ... }
- Since:
- 1.0
- See Also:
Basic
,ElementCollection
-
-
Element Detail
-
value
EnumType value
(Optional) The type used in mapping an enum type.- Default:
- jakarta.persistence.EnumType.ORDINAL
-
-