public enum WorkerStatus extends Enum<WorkerStatus>
| Enum Constant and Description |
|---|
ABORTED |
FAILED |
IN_PROGRESS |
INITIALIZING |
SUCCEDED |
| Modifier and Type | Method and Description |
|---|---|
static WorkerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkerStatus INITIALIZING
public static final WorkerStatus IN_PROGRESS
public static final WorkerStatus SUCCEDED
public static final WorkerStatus FAILED
public static final WorkerStatus ABORTED
public static WorkerStatus[] values()
for (WorkerStatus c : WorkerStatus.values()) System.out.println(c);
public static WorkerStatus 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 nullCopyright © 2017. All Rights Reserved.