public static enum Coordinator.Directive extends Enum<Coordinator.Directive>
| Modifier and Type | Method and Description |
|---|---|
static Coordinator.Directive |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Coordinator.Directive[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Coordinator.Directive NOOP
public static final Coordinator.Directive RUN
public static final Coordinator.Directive SKIP
public static Coordinator.Directive[] values()
for (Coordinator.Directive c : Coordinator.Directive.values()) System.out.println(c);
public static Coordinator.Directive 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.