public enum CustomFieldNature extends java.lang.Enum<CustomFieldNature>
| Enum Constant and Description |
|---|
AD |
CUSTOM_OPERATION |
DOCUMENT |
RECORD |
TRANSFER |
USER |
| Modifier and Type | Method and Description |
|---|---|
static CustomFieldNature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomFieldNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomFieldNature USER
public static final CustomFieldNature TRANSFER
public static final CustomFieldNature AD
public static final CustomFieldNature RECORD
public static final CustomFieldNature DOCUMENT
public static final CustomFieldNature CUSTOM_OPERATION
public static CustomFieldNature[] values()
for (CustomFieldNature c : CustomFieldNature.values()) System.out.println(c);
public static CustomFieldNature 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