public enum AccessType extends 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018,2020 Eclipse Foundation.
Use is subject to license terms.