Package com.sas.lsaf.workflow.task
Enum Class TaskQuery.AssigneeType
- All Implemented Interfaces:
Serializable,Comparable<TaskQuery.AssigneeType>,Constable
- Enclosing class:
TaskQuery
The valid values for the assignee type that describes the method to search for user task assignees.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSearches for an assignee.Searches for tasks in which the current user is the assignee, a candidate, or in a process flow that the current user owns.Requires assignees to be specified in the query. -
Method Summary
Modifier and TypeMethodDescriptionstatic TaskQuery.AssigneeTypeReturns the enum constant of this class with the specified name.static TaskQuery.AssigneeType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CURRENT_USER
Searches for tasks in which the current user is the assignee, a candidate, or in a process flow that the current user owns. -
SPECIFIC_ASSIGNEE
Requires assignees to be specified in the query. Searches for tasks in which the specified users are assignees, candidates, or in a process flow that the specified user owns. -
ALL
Searches for an assignee.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-