Uses of Interface
org.hibernate.query.criteria.JpaOrder
-
Packages that use JpaOrder Package Description org.hibernate.query.criteria Hibernate's support for JPA criteria queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.tree.select -
-
Uses of JpaOrder in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaOrder Modifier and Type Method Description JpaOrder
HibernateCriteriaBuilder. asc(jakarta.persistence.criteria.Expression<?> x)
JpaOrder
HibernateCriteriaBuilder. asc(jakarta.persistence.criteria.Expression<?> x, boolean nullsFirst)
Create an ordering by the ascending value of the expression.JpaOrder
HibernateCriteriaBuilder. desc(jakarta.persistence.criteria.Expression<?> x)
JpaOrder
HibernateCriteriaBuilder. desc(jakarta.persistence.criteria.Expression<?> x, boolean nullsFirst)
Create an ordering by the descending value of the expression.JpaOrder
JpaOrder. nullPrecedence(NullPrecedence precedence)
Set the precedence for nulls for this order elementJpaOrder
JpaOrder. reverse()
JpaOrder
HibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression)
JpaOrder
HibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder)
JpaOrder
HibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
Methods in org.hibernate.query.criteria that return types with arguments of type JpaOrder Modifier and Type Method Description List<JpaOrder>
JpaSubQuery. getOrderList()
List<? extends JpaOrder>
JpaQueryPart. getSortSpecifications()
Method parameters in org.hibernate.query.criteria with type arguments of type JpaOrder Modifier and Type Method Description JpaQueryGroup<T>
JpaQueryGroup. setSortSpecifications(List<? extends JpaOrder> sortSpecifications)
JpaQueryPart<T>
JpaQueryPart. setSortSpecifications(List<? extends JpaOrder> sortSpecifications)
JpaQueryStructure<T>
JpaQueryStructure. setSortSpecifications(List<? extends JpaOrder> sortSpecifications)
-
Uses of JpaOrder in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal that return JpaOrder Modifier and Type Method Description JpaOrder
SqmCriteriaNodeBuilder. asc(jakarta.persistence.criteria.Expression<?> x, boolean nullsFirst)
JpaOrder
SqmCriteriaNodeBuilder. desc(jakarta.persistence.criteria.Expression<?> x, boolean nullsFirst)
-
Uses of JpaOrder in org.hibernate.query.sqm.tree.select
Classes in org.hibernate.query.sqm.tree.select that implement JpaOrder Modifier and Type Class Description class
SqmSortSpecification
Methods in org.hibernate.query.sqm.tree.select that return JpaOrder Modifier and Type Method Description JpaOrder
SqmSortSpecification. nullPrecedence(NullPrecedence nullPrecedence)
JpaOrder
SqmSortSpecification. reverse()
Methods in org.hibernate.query.sqm.tree.select that return types with arguments of type JpaOrder Modifier and Type Method Description List<JpaOrder>
SqmSubQuery. getOrderList()
Method parameters in org.hibernate.query.sqm.tree.select with type arguments of type JpaOrder Modifier and Type Method Description SqmQueryGroup<T>
SqmQueryGroup. setSortSpecifications(List<? extends JpaOrder> sortSpecifications)
SqmQueryPart<T>
SqmQueryPart. setSortSpecifications(List<? extends JpaOrder> sortSpecifications)
SqmQuerySpec<T>
SqmQuerySpec. setSortSpecifications(List<? extends JpaOrder> sortSpecifications)
-