public enum TaskExecutionStatusType extends Enum<TaskExecutionStatusType>
Java class for TaskExecutionStatusType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TaskExecutionStatusType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="runnable"/>
<enumeration value="waiting"/>
<enumeration value="suspended"/>
<enumeration value="closed"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CLOSED
The task is done.
|
RUNNABLE
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.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskExecutionStatusType |
fromValue(String v) |
String |
value() |
static TaskExecutionStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskExecutionStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskExecutionStatusType RUNNABLE
public static final TaskExecutionStatusType WAITING
public static final TaskExecutionStatusType SUSPENDED
public static final TaskExecutionStatusType CLOSED
public static TaskExecutionStatusType[] values()
for (TaskExecutionStatusType c : TaskExecutionStatusType.values()) System.out.println(c);
public static TaskExecutionStatusType 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 nullpublic String value()
public static TaskExecutionStatusType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.