Uses of Interface
org.hibernate.query.criteria.JpaSearchOrder
-
Packages that use JpaSearchOrder Package Description org.hibernate.query.criteria The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.org.hibernate.query.criteria.spi SPI for extendingHibernateCriteriaBuilder
with additional functionality by registering aService
.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.tree.cte Nodes representing common table expressions (CTE) in the SQM tree. -
-
Uses of JpaSearchOrder in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaSearchOrder Modifier and Type Method Description JpaSearchOrder
HibernateCriteriaBuilder. asc(JpaCteCriteriaAttribute x)
Create a search ordering by the ascending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. asc(JpaCteCriteriaAttribute x, boolean nullsFirst)
Create a search ordering by the ascending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. desc(JpaCteCriteriaAttribute x)
Create a search ordering by the descending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. desc(JpaCteCriteriaAttribute x, boolean nullsFirst)
Create a search ordering by the descending value of the CTE attribute.JpaSearchOrder
JpaSearchOrder. nullPrecedence(NullPrecedence precedence)
Set the precedence of nulls for this search order elementJpaSearchOrder
JpaSearchOrder. reverse()
Switch the ordering.JpaSearchOrder
HibernateCriteriaBuilder. search(JpaCteCriteriaAttribute cteAttribute)
Create a search ordering based on the ascending value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. search(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder)
Create a search ordering based on the sort order of the value of the CTE attribute.JpaSearchOrder
HibernateCriteriaBuilder. search(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder, NullPrecedence nullPrecedence)
Create a search ordering based on the sort order and null precedence of the value of the CTE attribute.Methods in org.hibernate.query.criteria that return types with arguments of type JpaSearchOrder Modifier and Type Method Description List<JpaSearchOrder>
JpaCteCriteria. getSearchBySpecifications()
The order by which should be searched.Methods in org.hibernate.query.criteria with parameters of type JpaSearchOrder Modifier and Type Method Description default void
JpaCteCriteria. search(CteSearchClauseKind kind, String searchAttributeName, JpaSearchOrder... searchOrders)
Method parameters in org.hibernate.query.criteria with type arguments of type JpaSearchOrder Modifier and Type Method Description void
JpaCteCriteria. search(CteSearchClauseKind kind, String searchAttributeName, List<JpaSearchOrder> searchOrders)
-
Uses of JpaSearchOrder in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaSearchOrder Modifier and Type Method Description JpaSearchOrder
HibernateCriteriaBuilderDelegate. asc(JpaCteCriteriaAttribute x)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. asc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. desc(JpaCteCriteriaAttribute x)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. desc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. search(JpaCteCriteriaAttribute cteAttribute)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. search(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder)
JpaSearchOrder
HibernateCriteriaBuilderDelegate. search(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder, NullPrecedence nullPrecedence)
-
Uses of JpaSearchOrder in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal that return JpaSearchOrder Modifier and Type Method Description JpaSearchOrder
SqmCriteriaNodeBuilder. asc(JpaCteCriteriaAttribute x)
JpaSearchOrder
SqmCriteriaNodeBuilder. asc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
SqmCriteriaNodeBuilder. desc(JpaCteCriteriaAttribute x)
JpaSearchOrder
SqmCriteriaNodeBuilder. desc(JpaCteCriteriaAttribute x, boolean nullsFirst)
JpaSearchOrder
SqmCriteriaNodeBuilder. search(JpaCteCriteriaAttribute sortExpression)
JpaSearchOrder
SqmCriteriaNodeBuilder. search(JpaCteCriteriaAttribute sortExpression, SortDirection sortOrder)
JpaSearchOrder
SqmCriteriaNodeBuilder. search(JpaCteCriteriaAttribute sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)
-
Uses of JpaSearchOrder in org.hibernate.query.sqm.sql
Method parameters in org.hibernate.query.sqm.sql with type arguments of type JpaSearchOrder Modifier and Type Method Description protected List<SearchClauseSpecification>
BaseSqmToSqlAstConverter. visitSearchBySpecifications(CteTable cteTable, List<JpaSearchOrder> searchBySpecifications)
-
Uses of JpaSearchOrder in org.hibernate.query.sqm.tree.cte
Classes in org.hibernate.query.sqm.tree.cte that implement JpaSearchOrder Modifier and Type Class Description class
SqmSearchClauseSpecification
Methods in org.hibernate.query.sqm.tree.cte that return JpaSearchOrder Modifier and Type Method Description JpaSearchOrder
SqmSearchClauseSpecification. nullPrecedence(NullPrecedence precedence)
JpaSearchOrder
SqmSearchClauseSpecification. reverse()
Methods in org.hibernate.query.sqm.tree.cte that return types with arguments of type JpaSearchOrder Modifier and Type Method Description List<JpaSearchOrder>
SqmCteStatement. getSearchBySpecifications()
Method parameters in org.hibernate.query.sqm.tree.cte with type arguments of type JpaSearchOrder Modifier and Type Method Description void
SqmCteStatement. search(CteSearchClauseKind kind, String searchAttributeName, List<JpaSearchOrder> searchOrders)
-