Package org.openapitools.client.model
Enum JobQueryDtoSorting.SortByEnum
- java.lang.Object
-
- java.lang.Enum<JobQueryDtoSorting.SortByEnum>
-
- org.openapitools.client.model.JobQueryDtoSorting.SortByEnum
-
- All Implemented Interfaces:
Serializable,Comparable<JobQueryDtoSorting.SortByEnum>
- Enclosing class:
- JobQueryDtoSorting
public static enum JobQueryDtoSorting.SortByEnum extends Enum<JobQueryDtoSorting.SortByEnum>
Sort the results lexicographically by a given criterion. Must be used in conjunction with the sortOrder parameter.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJobQueryDtoSorting.SortByEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description EXECUTIONIDJOBDUEDATEJOBIDJOBPRIORITYJOBRETRIESPROCESSDEFINITIONIDPROCESSDEFINITIONKEYPROCESSINSTANCEIDTENANTID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JobQueryDtoSorting.SortByEnumfromValue(String value)StringgetValue()StringtoString()static JobQueryDtoSorting.SortByEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static JobQueryDtoSorting.SortByEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOBID
public static final JobQueryDtoSorting.SortByEnum JOBID
-
EXECUTIONID
public static final JobQueryDtoSorting.SortByEnum EXECUTIONID
-
PROCESSINSTANCEID
public static final JobQueryDtoSorting.SortByEnum PROCESSINSTANCEID
-
PROCESSDEFINITIONID
public static final JobQueryDtoSorting.SortByEnum PROCESSDEFINITIONID
-
PROCESSDEFINITIONKEY
public static final JobQueryDtoSorting.SortByEnum PROCESSDEFINITIONKEY
-
JOBPRIORITY
public static final JobQueryDtoSorting.SortByEnum JOBPRIORITY
-
JOBRETRIES
public static final JobQueryDtoSorting.SortByEnum JOBRETRIES
-
JOBDUEDATE
public static final JobQueryDtoSorting.SortByEnum JOBDUEDATE
-
TENANTID
public static final JobQueryDtoSorting.SortByEnum TENANTID
-
-
Method Detail
-
values
public static JobQueryDtoSorting.SortByEnum[] 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 (JobQueryDtoSorting.SortByEnum c : JobQueryDtoSorting.SortByEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobQueryDtoSorting.SortByEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<JobQueryDtoSorting.SortByEnum>
-
fromValue
public static JobQueryDtoSorting.SortByEnum fromValue(String value)
-
-