public enum ProcessAssigneeType extends Enum<ProcessAssigneeType>
| Enum Constant and Description |
|---|
ALL
All assignees in the list must take action
|
ANY
One assignee in the list must take action
|
ONE
User chooses one assignee from the list to take action
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessAssigneeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessAssigneeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessAssigneeType ONE
public static final ProcessAssigneeType ALL
public static final ProcessAssigneeType ANY
public static ProcessAssigneeType[] values()
for (ProcessAssigneeType c : ProcessAssigneeType.values()) System.out.println(c);
public static ProcessAssigneeType 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