public static enum Process.COUNTER_TYPES extends java.lang.Enum<Process.COUNTER_TYPES>
Enum Constant and Description |
---|
ALONE
This indicates the number of single activities
|
AND
This indicates the number of AND splits
|
EMPTY
This indicates the number of empty patter
|
LOOP
This indicates the number of loops
|
MAX_AND_BRANCHES
This indicates the maximum number of AND branches
|
MAX_XOR_BRANCHES
This indicates the maximum number of XOR branches
|
SEQUENCE
This indicates the number of sequence of activities
|
XOR
This indicates the number of XOR splits
|
Modifier and Type | Method and Description |
---|---|
static Process.COUNTER_TYPES |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Process.COUNTER_TYPES[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Process.COUNTER_TYPES LOOP
public static final Process.COUNTER_TYPES ALONE
public static final Process.COUNTER_TYPES SEQUENCE
public static final Process.COUNTER_TYPES AND
public static final Process.COUNTER_TYPES XOR
public static final Process.COUNTER_TYPES MAX_AND_BRANCHES
public static final Process.COUNTER_TYPES MAX_XOR_BRANCHES
public static final Process.COUNTER_TYPES EMPTY
public static Process.COUNTER_TYPES[] values()
for (Process.COUNTER_TYPES c : Process.COUNTER_TYPES.values()) System.out.println(c);
public static Process.COUNTER_TYPES 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