public static enum NodeState.OPERATION extends Enum<NodeState.OPERATION>
| Enum Constant and Description |
|---|
DETACH |
MERGE |
PERSIST |
REFRESH |
REMOVE |
| Modifier and Type | Method and Description |
|---|---|
static NodeState.OPERATION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeState.OPERATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeState.OPERATION PERSIST
public static final NodeState.OPERATION MERGE
public static final NodeState.OPERATION REMOVE
public static final NodeState.OPERATION REFRESH
public static final NodeState.OPERATION DETACH
public static NodeState.OPERATION[] values()
for (NodeState.OPERATION c : NodeState.OPERATION.values()) System.out.println(c);
public static NodeState.OPERATION 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 © 2015. All Rights Reserved.