public static enum BoxTask.CompletionRule extends Enum<BoxTask.CompletionRule>
Enum Constant and Description |
---|
ALL_ASSIGNEES
The task must be completed by all assignees.
|
ANY_ASSIGNEE
The task must be completed by at least one assignee.
|
Modifier and Type | Method and Description |
---|---|
static BoxTask.CompletionRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxTask.CompletionRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxTask.CompletionRule ALL_ASSIGNEES
public static final BoxTask.CompletionRule ANY_ASSIGNEE
public static BoxTask.CompletionRule[] values()
for (BoxTask.CompletionRule c : BoxTask.CompletionRule.values()) System.out.println(c);
public static BoxTask.CompletionRule 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