Enum Class TaskQuery.AssigneeType

java.lang.Object
java.lang.Enum<TaskQuery.AssigneeType>
com.sas.lsaf.workflow.task.TaskQuery.AssigneeType
All Implemented Interfaces:
Serializable, Comparable<TaskQuery.AssigneeType>, Constable
Enclosing class:
TaskQuery

public static enum TaskQuery.AssigneeType extends Enum<TaskQuery.AssigneeType>
The valid values for the assignee type that describes the method to search for user task assignees.
  • Enum Constant Details

    • CURRENT_USER

      public static final TaskQuery.AssigneeType 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

      public static final TaskQuery.AssigneeType 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

      public static final TaskQuery.AssigneeType ALL
      Searches for an assignee.
  • Method Details

    • values

      public static TaskQuery.AssigneeType[] 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

      public static TaskQuery.AssigneeType valueOf(String name)
      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 name
      NullPointerException - if the argument is null