public static enum AbstractField.MODE extends Enum<AbstractField.MODE>
Enum Constant and Description |
---|
INSERT
Value will be added to existing one
|
REMOVE
Value will be removed from existing one
|
REPLACE
Value will replace existing one
|
Modifier and Type | Method and Description |
---|---|
static AbstractField.MODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractField.MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractField.MODE REPLACE
public static final AbstractField.MODE INSERT
public static final AbstractField.MODE REMOVE
public static AbstractField.MODE[] values()
for (AbstractField.MODE c : AbstractField.MODE.values()) System.out.println(c);
public static AbstractField.MODE 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 null