Package org.openapitools.client.model
Class ExecutionQueryDtoSorting
- java.lang.Object
-
- org.openapitools.client.model.ExecutionQueryDtoSorting
-
public class ExecutionQueryDtoSorting extends Object
ExecutionQueryDtoSorting
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExecutionQueryDtoSorting.SortByEnumSort the results lexicographically by a given criterion.static classExecutionQueryDtoSorting.SortOrderEnumSort the results in a given order.
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_SORT_BYstatic StringSERIALIZED_NAME_SORT_ORDER
-
Constructor Summary
Constructors Constructor Description ExecutionQueryDtoSorting()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ExecutionQueryDtoSorting.SortByEnumgetSortBy()Sort the results lexicographically by a given criterion.ExecutionQueryDtoSorting.SortOrderEnumgetSortOrder()Sort the results in a given order.inthashCode()voidsetSortBy(ExecutionQueryDtoSorting.SortByEnum sortBy)voidsetSortOrder(ExecutionQueryDtoSorting.SortOrderEnum sortOrder)ExecutionQueryDtoSortingsortBy(ExecutionQueryDtoSorting.SortByEnum sortBy)ExecutionQueryDtoSortingsortOrder(ExecutionQueryDtoSorting.SortOrderEnum sortOrder)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_SORT_BY
public static final String SERIALIZED_NAME_SORT_BY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SORT_ORDER
public static final String SERIALIZED_NAME_SORT_ORDER
- See Also:
- Constant Field Values
-
-
Method Detail
-
sortBy
public ExecutionQueryDtoSorting sortBy(ExecutionQueryDtoSorting.SortByEnum sortBy)
-
getSortBy
public ExecutionQueryDtoSorting.SortByEnum getSortBy()
Sort the results lexicographically by a given criterion. Must be used in conjunction with the sortOrder parameter.- Returns:
- sortBy
-
setSortBy
public void setSortBy(ExecutionQueryDtoSorting.SortByEnum sortBy)
-
sortOrder
public ExecutionQueryDtoSorting sortOrder(ExecutionQueryDtoSorting.SortOrderEnum sortOrder)
-
getSortOrder
public ExecutionQueryDtoSorting.SortOrderEnum getSortOrder()
Sort the results in a given order. Values may be `asc` for ascending order or `desc` for descending order. Must be used in conjunction with the sortBy parameter.- Returns:
- sortOrder
-
setSortOrder
public void setSortOrder(ExecutionQueryDtoSorting.SortOrderEnum sortOrder)
-
-