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