Package org.hibernate.query.criteria
Interface JpaSearchOrder
- All Superinterfaces:
JpaCriteriaNode
,Serializable
- All Known Implementing Classes:
SqmSearchClauseSpecification
Represents the search order for a recursive CTE (common table expression).
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturn the CTE attribute that is used for ordering.The precedence for nulls for this search order elementboolean
Whether ascending ordering is in effect.nullPrecedence
(NullPrecedence precedence) Set the precedence of nulls for this search order elementreverse()
Switch the ordering.
-
Method Details
-
getSortOrder
SortDirection getSortOrder() -
nullPrecedence
Set the precedence of nulls for this search order element -
getNullPrecedence
NullPrecedence getNullPrecedence()The precedence for nulls for this search order element -
isAscending
boolean isAscending()Whether ascending ordering is in effect.- Returns:
- boolean indicating whether ordering is ascending
-
reverse
JpaSearchOrder reverse()Switch the ordering.- Returns:
- a new
Order
instance with the reversed ordering
-
getAttribute
JpaCteCriteriaAttribute getAttribute()Return the CTE attribute that is used for ordering.- Returns:
- CTE attribute used for ordering
-