public static enum NodeUpdate.Type extends java.lang.Enum<NodeUpdate.Type>
Enum Constant and Description |
---|
CREATE_NODE
Creates an entry if the current version matches specified version.
|
DELETE_NODE
Deletes an entry if the current version matches specified version.
|
UPDATE_NODE
Updates an entry if the current version matches specified version.
|
Modifier and Type | Method and Description |
---|---|
static NodeUpdate.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeUpdate.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeUpdate.Type CREATE_NODE
public static final NodeUpdate.Type UPDATE_NODE
public static final NodeUpdate.Type DELETE_NODE
public static NodeUpdate.Type[] values()
for (NodeUpdate.Type c : NodeUpdate.Type.values()) System.out.println(c);
public static NodeUpdate.Type 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