public enum NodeExecutionStatus extends Enum<NodeExecutionStatus>
Enum Constant and Description |
---|
COMMUNICATION_ERROR
Status unknown due to communication error.
|
DOWN
Node down (only for remote nodes, of course)
|
ERROR
Node error (see NodeErrorStatus for more details).
|
PAUSED
Node is running, scheduler is paused.
|
RUNNING
Node is running, task scheduler is running.
|
Modifier and Type | Method and Description |
---|---|
static NodeExecutionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeExecutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeExecutionStatus RUNNING
public static final NodeExecutionStatus PAUSED
public static final NodeExecutionStatus DOWN
public static final NodeExecutionStatus ERROR
public static final NodeExecutionStatus COMMUNICATION_ERROR
public static NodeExecutionStatus[] values()
for (NodeExecutionStatus c : NodeExecutionStatus.values()) System.out.println(c);
public static NodeExecutionStatus 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 © 2013 evolveum. All rights reserved.