Enum WorkflowTaskQuery.OrderBy
- java.lang.Object
-
- java.lang.Enum<WorkflowTaskQuery.OrderBy>
-
- org.alfresco.service.cmr.workflow.WorkflowTaskQuery.OrderBy
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WorkflowTaskQuery.OrderBy>
- Enclosing class:
- WorkflowTaskQuery
public static enum WorkflowTaskQuery.OrderBy extends java.lang.Enum<WorkflowTaskQuery.OrderBy>
Order By Columns
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TaskActor_AscTaskActor_DescTaskCreated_AscTaskCreated_DescTaskDue_AscTaskDue_DescTaskId_AscTaskId_DescTaskName_AscTaskName_DescTaskState_AscTaskState_Desc
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorkflowTaskQuery.OrderByvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WorkflowTaskQuery.OrderBy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TaskId_Asc
public static final WorkflowTaskQuery.OrderBy TaskId_Asc
-
TaskId_Desc
public static final WorkflowTaskQuery.OrderBy TaskId_Desc
-
TaskCreated_Asc
public static final WorkflowTaskQuery.OrderBy TaskCreated_Asc
-
TaskCreated_Desc
public static final WorkflowTaskQuery.OrderBy TaskCreated_Desc
-
TaskDue_Asc
public static final WorkflowTaskQuery.OrderBy TaskDue_Asc
-
TaskDue_Desc
public static final WorkflowTaskQuery.OrderBy TaskDue_Desc
-
TaskName_Asc
public static final WorkflowTaskQuery.OrderBy TaskName_Asc
-
TaskName_Desc
public static final WorkflowTaskQuery.OrderBy TaskName_Desc
-
TaskActor_Asc
public static final WorkflowTaskQuery.OrderBy TaskActor_Asc
-
TaskActor_Desc
public static final WorkflowTaskQuery.OrderBy TaskActor_Desc
-
TaskState_Asc
public static final WorkflowTaskQuery.OrderBy TaskState_Asc
-
TaskState_Desc
public static final WorkflowTaskQuery.OrderBy TaskState_Desc
-
-
Method Detail
-
values
public static WorkflowTaskQuery.OrderBy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WorkflowTaskQuery.OrderBy c : WorkflowTaskQuery.OrderBy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowTaskQuery.OrderBy valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-