public static enum OrderNode.TYPE extends java.lang.Enum<OrderNode.TYPE>
| Enum Constant and Description |
|---|
ACTIVITY |
AND |
END_EVENT |
START_EVENT |
UNKNOWN |
XOR |
| Modifier and Type | Method and Description |
|---|---|
static OrderNode.TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OrderNode.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderNode.TYPE UNKNOWN
public static final OrderNode.TYPE ACTIVITY
public static final OrderNode.TYPE START_EVENT
public static final OrderNode.TYPE END_EVENT
public static final OrderNode.TYPE XOR
public static final OrderNode.TYPE AND
public static OrderNode.TYPE[] values()
for (OrderNode.TYPE c : OrderNode.TYPE.values()) System.out.println(c);
public static OrderNode.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 null