public static enum Coordinator.Status extends Enum<Coordinator.Status>
| Enum Constant and Description |
|---|
FAILED |
IN_PROGRESS |
SKIPPED |
SUCCEEDED |
WAITING |
| Modifier and Type | Method and Description |
|---|---|
static Coordinator.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Coordinator.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Coordinator.Status WAITING
public static final Coordinator.Status IN_PROGRESS
public static final Coordinator.Status SUCCEEDED
public static final Coordinator.Status FAILED
public static final Coordinator.Status SKIPPED
public static Coordinator.Status[] values()
for (Coordinator.Status c : Coordinator.Status.values()) System.out.println(c);
public static Coordinator.Status 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 © 2015. All rights reserved.