public enum ProcessActionType extends Enum<ProcessActionType>
| Enum Constant and Description |
|---|
PRIMARY
Only assignees can execute this action.
|
SECONDARY
Users other than assignees can also execute this action.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessActionType PRIMARY
public static final ProcessActionType SECONDARY
public static ProcessActionType[] values()
for (ProcessActionType c : ProcessActionType.values()) System.out.println(c);
public static ProcessActionType 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