public static enum ProcessTreeModel.Operator extends java.lang.Enum<ProcessTreeModel.Operator>
| Enum Constant and Description |
|---|
ACTIVITY |
EXCLUSIVE_CHOICE |
LOOP |
LOOP_FLOWER |
PARALLEL |
SEQUENTIAL |
| Modifier and Type | Method and Description |
|---|---|
static ProcessTreeModel.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessTreeModel.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessTreeModel.Operator ACTIVITY
public static final ProcessTreeModel.Operator SEQUENTIAL
public static final ProcessTreeModel.Operator LOOP
public static final ProcessTreeModel.Operator LOOP_FLOWER
public static final ProcessTreeModel.Operator EXCLUSIVE_CHOICE
public static final ProcessTreeModel.Operator PARALLEL
public static ProcessTreeModel.Operator[] values()
for (ProcessTreeModel.Operator c : ProcessTreeModel.Operator.values()) System.out.println(c);
public static ProcessTreeModel.Operator 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