public static enum PlgParameters.PATTERN extends java.lang.Enum<PlgParameters.PATTERN>
| Enum Constant and Description |
|---|
AND
AND pattern
|
EMPTY
Empty: no activity pattern
|
SEQUENCE
Sequence activities pattern
|
SINGLE
Single activity pattern
|
XOR
XOR pattern
|
| Modifier and Type | Method and Description |
|---|---|
static PlgParameters.PATTERN |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlgParameters.PATTERN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlgParameters.PATTERN SINGLE
public static final PlgParameters.PATTERN SEQUENCE
public static final PlgParameters.PATTERN AND
public static final PlgParameters.PATTERN XOR
public static final PlgParameters.PATTERN EMPTY
public static PlgParameters.PATTERN[] values()
for (PlgParameters.PATTERN c : PlgParameters.PATTERN.values()) System.out.println(c);
public static PlgParameters.PATTERN 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