public enum FieldAccessType extends java.lang.Enum<FieldAccessType>
Column.fieldAccess()
and Row.fieldAccess()
define how a row field is to be accessed either directly or with getter/setter methods.Enum Constant and Description |
---|
Default
Field access is not specified.
|
Direct
Field is accessed directly without using getter/setter methods.
|
Method
Field is accessed with getter/setter methods.
|
Modifier and Type | Method and Description |
---|---|
static FieldAccessType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldAccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldAccessType Default
Column.fieldAccess()
and Row.fieldAccess()
javadoc for rules about how access is determined.public static final FieldAccessType Direct
public static final FieldAccessType Method
public static FieldAccessType[] values()
for (FieldAccessType c : FieldAccessType.values()) System.out.println(c);
public static FieldAccessType 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