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