|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Target(value={METHOD,FIELD}) @Retention(value=RUNTIME) public @interface Enumerated
Specifies that a persistent property or field should be persisted
as a enumerated type. The
Copyright © 2009-2011, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms. Generated on 10-February-2011 12:41 Enumerated
annotation may
be used in conjunction with the Basic
annotation, or in
conjunction with the ElementCollection
annotation when the
element collection value is of basic type. If the enumerated type
is not specified or the Enumerated
annotation is not
used, the EnumType
value is assumed to be ORDINAL
.
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() {...}
...
}
Basic
,
ElementCollection
Optional Element Summary
EnumType
value
(Optional) The type used in mapping an enum type.
value
public abstract EnumType value
Overview
Package
Class
Tree
Deprecated
Index
Help
PREV CLASS
NEXT CLASS
FRAMES
NO FRAMES
SUMMARY: REQUIRED | OPTIONAL
DETAIL: ELEMENT
Submit a bug or feature