java.io.Serializable, java.lang.Comparable<AccessType>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 | Description |
|---|---|
FIELD |
Field-based access is used.
|
PROPERTY |
Property-based access is used.
|
| Modifier and Type | Method | 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 nullCopyright © 2018. All rights reserved.