public enum WorkerStatus extends Enum<WorkerStatus>
| Enum Constant and Description |
|---|
FAILED |
IN_PROGRESS |
INITIALIZING |
PENDING |
SUCCEDED |
VALIDATING_DATA |
| 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 PENDING
public static final WorkerStatus INITIALIZING
public static final WorkerStatus VALIDATING_DATA
public static final WorkerStatus IN_PROGRESS
public static final WorkerStatus SUCCEDED
public static final WorkerStatus FAILED
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 © 2014. All Rights Reserved.