|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TaskExecutionStatus>
com.evolveum.midpoint.task.api.TaskExecutionStatus
public enum TaskExecutionStatus
Task execution status. Execution status provides information about the task overall high-level execution state. It tells whether the task is running/runnable, waits for something or is done.
Enum Constant Summary | |
---|---|
CLOSED
The task is done. |
|
RUNNING
The task is running or is ready to be executed. |
|
SUSPENDED
The task has been suspended. |
|
WAITING
The IDM system is waiting while the task is being executed on an external node (e.g. |
Method Summary | |
---|---|
static TaskExecutionStatus |
fromTaskType(TaskExecutionStatusType executionStatus)
|
TaskExecutionStatusType |
toTaskType()
|
static TaskExecutionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TaskExecutionStatus[] |
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 TaskExecutionStatus RUNNING
public static final TaskExecutionStatus WAITING
public static final TaskExecutionStatus SUSPENDED
public static final TaskExecutionStatus CLOSED
Method Detail |
---|
public static TaskExecutionStatus[] values()
for (TaskExecutionStatus c : TaskExecutionStatus.values()) System.out.println(c);
public static TaskExecutionStatus 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 nullpublic static TaskExecutionStatus fromTaskType(TaskExecutionStatusType executionStatus)
public TaskExecutionStatusType toTaskType()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |