| Enum Constant and Description |
|---|
CONDITION |
FORK |
INITIAL_STATE |
JOIN |
JOIN_XOR |
STATE |
TASK |
TERMINAL_STATE |
| Modifier and Type | Method and Description |
|---|---|
static Node.Type |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static Node.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Node.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.Type CONDITION
public static final Node.Type FORK
public static final Node.Type INITIAL_STATE
public static final Node.Type JOIN
public static final Node.Type JOIN_XOR
public static final Node.Type STATE
public static final Node.Type TASK
public static final Node.Type TERMINAL_STATE
public static Node.Type[] values()
for (Node.Type c : Node.Type.values()) System.out.println(c);
public static Node.Type 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 nullpublic static Node.Type create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<Node.Type>