public static enum Modification.ModificationType extends Enum<Modification.ModificationType>
Enum Constant and Description |
---|
MOVE |
PUT_DATA |
PUT_DATA_ERASE |
PUT_KEY_VALUE |
REMOVE_DATA |
REMOVE_KEY_VALUE |
REMOVE_NODE |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static Modification.ModificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Modification.ModificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Modification.ModificationType PUT_KEY_VALUE
public static final Modification.ModificationType PUT_DATA
public static final Modification.ModificationType PUT_DATA_ERASE
public static final Modification.ModificationType REMOVE_NODE
public static final Modification.ModificationType REMOVE_KEY_VALUE
public static final Modification.ModificationType REMOVE_DATA
public static final Modification.ModificationType MOVE
public static final Modification.ModificationType UNKNOWN
public static Modification.ModificationType[] values()
for (Modification.ModificationType c : Modification.ModificationType.values()) System.out.println(c);
public static Modification.ModificationType 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 © 2012 JBoss, a division of Red Hat. All Rights Reserved.