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