public static enum TaskQuery.AssigneeType extends Enum<TaskQuery.AssigneeType>
Enum Constant and Description |
---|
ALL
Searches for any assignee.
|
CURRENT_USER
Searches for tasks where the current user is the assignee, a candidate, or in a process flow the current user owns.
|
SPECIFIC_ASSIGNEE
Requires assignees to be specified on the query.
|
Modifier and Type | Method and Description |
---|---|
static TaskQuery.AssigneeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskQuery.AssigneeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskQuery.AssigneeType CURRENT_USER
public static final TaskQuery.AssigneeType SPECIFIC_ASSIGNEE
public static final TaskQuery.AssigneeType ALL
public static TaskQuery.AssigneeType[] values()
for (TaskQuery.AssigneeType c : TaskQuery.AssigneeType.values()) System.out.println(c);
public static TaskQuery.AssigneeType 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<i>Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA</i>