|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NodeExecutionStatus>
com.evolveum.midpoint.task.api.NodeExecutionStatus
public enum NodeExecutionStatus
Status of this node w.r.t. error conditions. Generally speaking, if NodeErrorStatus != OK, tasks cannot be scheduled on this node.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
static NodeExecutionStatus |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
public static NodeExecutionStatus[] values()
for (NodeExecutionStatus c : NodeExecutionStatus.values()) System.out.println(c);
public static NodeExecutionStatus 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |