public static enum ProcessConstants.NodeState extends java.lang.Enum<ProcessConstants.NodeState>
| Enum Constant and Description |
|---|
NS_ACTIVATED
node state 'activated'
|
NS_ACTIVATED_SUPPR
Node state 'activated suppressed'.
|
NS_COMPLETED
node state 'completed'
|
NS_ENQUIRED
node state 'enquired'
|
NS_FAILED
node state 'failed'
|
NS_NOT_ACTIVATED
node state 'not activated'
|
NS_RUNNING
node state 'running'
|
NS_SELECTED
node state 'selected'
|
NS_SELECTED_SUPPR
Node state 'selected suppressed'.
|
NS_SKIPPED
node state 'skipped'
|
NS_SUSPENDED
node state 'suspended'
|
NS_SUSPENDED_SUPPR
Node state 'suspended suppressed'.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessConstants.NodeState[] |
getAll()
Gets all node states in an array.
|
int |
getCode() |
static ProcessConstants.NodeState |
valueOf(int code) |
static ProcessConstants.NodeState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.NodeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.NodeState NS_NOT_ACTIVATED
public static final ProcessConstants.NodeState NS_ACTIVATED
public static final ProcessConstants.NodeState NS_SELECTED
public static final ProcessConstants.NodeState NS_RUNNING
public static final ProcessConstants.NodeState NS_SUSPENDED
public static final ProcessConstants.NodeState NS_ENQUIRED
public static final ProcessConstants.NodeState NS_COMPLETED
public static final ProcessConstants.NodeState NS_FAILED
public static final ProcessConstants.NodeState NS_SKIPPED
public static final ProcessConstants.NodeState NS_ACTIVATED_SUPPR
public static final ProcessConstants.NodeState NS_SELECTED_SUPPR
public static final ProcessConstants.NodeState NS_SUSPENDED_SUPPR
public static ProcessConstants.NodeState[] values()
for (ProcessConstants.NodeState c : ProcessConstants.NodeState.values()) System.out.println(c);
public static ProcessConstants.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 nullpublic int getCode()
public static ProcessConstants.NodeState valueOf(int code)
public static ProcessConstants.NodeState[] getAll()