public enum AccessType extends java.lang.Enum<AccessType>
Access annotation to specify an access
 type to be applied to an entity class, mapped superclass, or
 embeddable class, or to a specific attribute of such a class.Access| Enum Constant and Description | 
|---|
| FIELDField-based access is used. | 
| PROPERTYProperty-based access is used. | 
| Modifier and Type | Method and Description | 
|---|---|
| static AccessType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static AccessType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AccessType FIELD
public static final AccessType PROPERTY
public static AccessType[] values()
for (AccessType c : AccessType.values()) System.out.println(c);
public static AccessType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null