private static enum Dependency.State extends java.lang.Enum<Dependency.State>
| Enum Constant and Description |
|---|
DONE
Execution completed.
|
FAILED
Execution failed.
|
RUNNING
Now running.
|
WAITING
Waiting for dependencies to be resolved.
|
| Modifier and Type | Method and Description |
|---|---|
static Dependency.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dependency.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dependency.State WAITING
public static final Dependency.State RUNNING
public static final Dependency.State FAILED
public static final Dependency.State DONE
public static Dependency.State[] values()
for (Dependency.State c : Dependency.State.values()) System.out.println(c);
public static Dependency.State 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