Difference between revisions of "EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings/Enumerated"
m |
(→Example: Using XML) |
||
(16 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | {{EclipseLink_UserGuide|info=y|toc=n}} | + | {{EclipseLink_UserGuide |
+ | |info=y | ||
+ | |toc=n | ||
+ | |eclipselink=y | ||
+ | |eclipselinktype=JPA | ||
+ | |api=y | ||
+ | |apis= | ||
+ | * [http://www.eclipse.org/eclipselink/api/latest/javax/persistence/Enumerated.html @Enumerated] | ||
+ | * [http://www.eclipse.org/eclipselink/api/latest/javax/persistence/EnumType.html EnumType] | ||
+ | |examples=y | ||
+ | |example= | ||
+ | *[[EclipseLink/Examples/JPA/EnumToCode|Map Enum to Coded Values]] | ||
+ | }} | ||
+ | |||
=@Enumerated= | =@Enumerated= | ||
By default, EclipseLink persistence provider persists the ordinal values of enumerated constants. | By default, EclipseLink persistence provider persists the ordinal values of enumerated constants. | ||
− | Use the <tt>@Enumerated</tt> annotation to specify whether EclipseLink persistence provider should persist ordinal or <tt>String</tt> values of enumerated constants if the <tt>String</tt> value suits your application requirements, or to match an existing database schema: | + | Use the <tt>@Enumerated</tt> annotation to specify whether EclipseLink persistence provider should persist ordinal (integer) or <tt>String</tt> values of enumerated constants if the <tt>String</tt> value suits your application requirements, or to match an existing database schema: |
− | You can use this annotation with the [[EclipseLink/UserGuide/JPA/Basic_JPA_Development/Mapping/Basic_Mappings|@Basic | + | You can use this annotation with the [[EclipseLink/UserGuide/JPA/Basic_JPA_Development/Mapping/Basic_Mappings|<code>@Basic</code>]] annotation. |
{{EclipseLink_AttributeTable | {{EclipseLink_AttributeTable | ||
− | |caption= | + | |caption=@Enumerated Attributes |
|content=<tr> | |content=<tr> | ||
<td>'''<tt>value</tt>'''</td> | <td>'''<tt>value</tt>'''</td> | ||
− | <td>By default, EclipseLink persistence provider assumes that for a property or field mapped to an enumerated constant, the ordinal value should be persisted. In the [[#Example | + | <td>By default, EclipseLink persistence provider assumes that for a property or field mapped to an enumerated constant, the ordinal value should be persisted. In the [[#Example: @Enumerated Annotation|@Enumerated Annotation]] example, below, the ordinal value of <tt>EmployeeStatus</tt> is written to the database when <tt>Employee</tt> is persisted.<br>If you want the <tt>String</tt> value of the enumerated constant persisted, set value to <tt>EnumType.STRING</tt>.</td> |
− | <td></td> | + | <td><code>ORDINAL</code></td> |
<td>No</td> | <td>No</td> | ||
</tr> | </tr> | ||
}} | }} | ||
− | |||
+ | Given the enumerated constants in the [[#Example: Enumerated Constants|Enumerated Constants]] example, the [[#Example: @Enumerated Annotation|@Enumerated Annotation]] example, below, shows how to use the <tt>@Enumerated</tt> annotation to specify that the <tt>String</tt> value of <tt>SalaryRate</tt> should be written to the database when <tt>Employee</tt> is persisted. By default, the ordinal value of <tt>EmployeeStatus</tt> is written to the database. | ||
− | + | ======'' Example: Enumerated Constants''====== | |
− | + | ||
<source lang="java"> | <source lang="java"> | ||
− | + | public enum EmployeeStatus {FULL_TIME, PART_TIME, CONTRACT} | |
− | + | public enum SalaryRate {JUNIOR, SENIOR, MANAGER, EXECUTIVE} | |
</source> | </source> | ||
− | + | ======'' Example: @Enumerated Annotation''====== | |
− | '' | + | |
<source lang="java"> | <source lang="java"> | ||
− | + | @Entity | |
− | + | public class Employee implements Serializable{ | |
− | + | ... | |
− | + | public EmployeeStatus getStatus() { | |
− | + | ... | |
− | + | } | |
− | + | ||
− | + | @Enumerated(STRING) | |
− | + | public SalaryRate getRate() { | |
− | + | ... | |
− | + | } | |
− | + | ... | |
− | + | } | |
+ | </source> | ||
+ | |||
+ | ======''Example: Using <code><nowiki><enumerated></nowiki></code> XML''====== | ||
+ | |||
+ | <source lang="xml"> | ||
+ | <entity class="Employee"> | ||
+ | <attributes> | ||
+ | ... | ||
+ | <basic name="status"/> | ||
+ | <basic name="rate"> | ||
+ | <enumerated>STRING</enumerated> | ||
+ | </basic> | ||
+ | ... | ||
+ | </attributes> | ||
+ | </entity> | ||
</source> | </source> | ||
Line 48: | Line 74: | ||
|section=Section 9.1.21 "Enumerated Annotation"}} | |section=Section 9.1.21 "Enumerated Annotation"}} | ||
+ | ====Legacy Data==== | ||
+ | Another option for mapping enumerated values is to use an <code>ObjectTypeConverter</code>. A converter allows for type codes to be used on the database instead of the enum's name, which may be required for legacy data. | ||
+ | See, [[EclipseLink/UserGuide/JPA/Basic_JPA_Development/Mapping/Basic_Mappings/Default_Conversions_and_Converters/ObjectTypeConverter|ObjectTypeConverter]] | ||
{{EclipseLink_JPA | {{EclipseLink_JPA | ||
− | |previous=[[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings|Basic | + | |previous=[[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings/Basic|@Basic]] |
− | |next= [[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings/Temporal|Temporal]] | + | |next= [[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings/Temporal|@Temporal]] |
|up= [[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings|Basic Mappings]] | |up= [[EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings|Basic Mappings]] | ||
− | |version= 2. | + | |version=2.2.0 DRAFT}} |
− | }} | + |
Latest revision as of 14:00, 27 October 2011
EclipseLink JPA
EclipseLink | |
Website | |
Download | |
Community | |
Mailing List • Forums • IRC • mattermost | |
Issues | |
Open • Help Wanted • Bug Day | |
Contribute | |
Browse Source |
Key API
Examples
@Enumerated
By default, EclipseLink persistence provider persists the ordinal values of enumerated constants.
Use the @Enumerated annotation to specify whether EclipseLink persistence provider should persist ordinal (integer) or String values of enumerated constants if the String value suits your application requirements, or to match an existing database schema:
You can use this annotation with the @Basic
annotation.
Attribute | Description | Default | Required? |
---|---|---|---|
value | By default, EclipseLink persistence provider assumes that for a property or field mapped to an enumerated constant, the ordinal value should be persisted. In the @Enumerated Annotation example, below, the ordinal value of EmployeeStatus is written to the database when Employee is persisted. If you want the String value of the enumerated constant persisted, set value to EnumType.STRING. |
ORDINAL |
No |
Given the enumerated constants in the Enumerated Constants example, the @Enumerated Annotation example, below, shows how to use the @Enumerated annotation to specify that the String value of SalaryRate should be written to the database when Employee is persisted. By default, the ordinal value of EmployeeStatus is written to the database.
Example: Enumerated Constants
public enum EmployeeStatus {FULL_TIME, PART_TIME, CONTRACT} public enum SalaryRate {JUNIOR, SENIOR, MANAGER, EXECUTIVE}
Example: @Enumerated Annotation
@Entity public class Employee implements Serializable{ ... public EmployeeStatus getStatus() { ... } @Enumerated(STRING) public SalaryRate getRate() { ... } ... }
Example: Using <enumerated>
XML
<entity class="Employee"> <attributes> ... <basic name="status"/> <basic name="rate"> <enumerated>STRING</enumerated> </basic> ... </attributes> </entity>
For more information, see Section 9.1.21 "Enumerated Annotation" in the JPA Specification.
Legacy Data
Another option for mapping enumerated values is to use an ObjectTypeConverter
. A converter allows for type codes to be used on the database instead of the enum's name, which may be required for legacy data.
See, ObjectTypeConverter
![]() |
@Temporal![]() |
|
![]() JPA User Guide: |
||
How to contribute to this guide... |