public enum ParallelTaskState extends java.lang.Enum<ParallelTaskState>
| Enum Constant and Description |
|---|
COMPLETED_WITH_ERROR
The completed with error.
|
COMPLETED_WITHOUT_ERROR
The completed without error.
|
IN_PROGRESS
The in progress.
|
WAITING
The waiting.
|
| Modifier and Type | Method and Description |
|---|---|
static ParallelTaskState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParallelTaskState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParallelTaskState WAITING
public static final ParallelTaskState IN_PROGRESS
public static final ParallelTaskState COMPLETED_WITHOUT_ERROR
public static final ParallelTaskState COMPLETED_WITH_ERROR
public static ParallelTaskState[] values()
for (ParallelTaskState c : ParallelTaskState.values()) System.out.println(c);
public static ParallelTaskState 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 null