public enum TaskComponentStatusEnum extends java.lang.Enum<TaskComponentStatusEnum>
| Enum Constant and Description |
|---|
CANCELED |
FAILED |
PENDING |
RUNNING |
SUCCEEDED |
| Modifier and Type | Method and Description |
|---|---|
static TaskComponentStatusEnum |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static TaskComponentStatusEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskComponentStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskComponentStatusEnum CANCELED
public static final TaskComponentStatusEnum FAILED
public static final TaskComponentStatusEnum PENDING
public static final TaskComponentStatusEnum RUNNING
public static final TaskComponentStatusEnum SUCCEEDED
public static TaskComponentStatusEnum[] values()
for (TaskComponentStatusEnum c : TaskComponentStatusEnum.values()) System.out.println(c);
public static TaskComponentStatusEnum 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 java.lang.String toString()
toString in class java.lang.Enum<TaskComponentStatusEnum>public static TaskComponentStatusEnum fromValue(java.lang.String text)