Uses of Class
org.hibernate.query.sqm.tree.select.SqmSortSpecification
-
Packages that use SqmSortSpecification Package Description org.hibernate.query.hql.internal Implementation of the SPIs for HQL support.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.spi SPI-level SQM contractsorg.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.tree.expression Nodes representing expressions in the SQM tree.org.hibernate.query.sqm.tree.select Nodes representingselect
statements in the SQM tree. -
-
Uses of SqmSortSpecification in org.hibernate.query.hql.internal
Methods in org.hibernate.query.hql.internal that return SqmSortSpecification Modifier and Type Method Description SqmSortSpecification
SemanticQueryBuilder. visitSortSpecification(HqlParser.SortSpecificationContext ctx)
-
Uses of SqmSortSpecification in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return SqmSortSpecification Modifier and Type Method Description SqmSortSpecification
NodeBuilder. asc(Expression<?> x)
SqmSortSpecification
NodeBuilder. desc(Expression<?> x)
SqmSortSpecification
NodeBuilder. sort(JpaExpression<?> sortExpression)
SqmSortSpecification
NodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder)
SqmSortSpecification
NodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)
Methods in org.hibernate.query.sqm with parameters of type SqmSortSpecification Modifier and Type Method Description T
SemanticQueryWalker. visitSortSpecification(SqmSortSpecification sortSpecification)
-
Uses of SqmSortSpecification in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal that return SqmSortSpecification Modifier and Type Method Description SqmSortSpecification
SqmCriteriaNodeBuilder. asc(Expression<?> x)
SqmSortSpecification
SqmCriteriaNodeBuilder. desc(Expression<?> x)
SqmSortSpecification
SqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression)
SqmSortSpecification
SqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder)
SqmSortSpecification
SqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)
Methods in org.hibernate.query.sqm.internal with parameters of type SqmSortSpecification Modifier and Type Method Description Object
SqmTreePrinter. visitSortSpecification(SqmSortSpecification sortSpecification)
-
Uses of SqmSortSpecification in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type SqmSortSpecification Modifier and Type Method Description Object
BaseSemanticQueryWalker. visitSortSpecification(SqmSortSpecification sortSpecification)
-
Uses of SqmSortSpecification in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql with parameters of type SqmSortSpecification Modifier and Type Method Description SortSpecification
BaseSqmToSqlAstConverter. visitSortSpecification(SqmSortSpecification sortSpecification)
-
Uses of SqmSortSpecification in org.hibernate.query.sqm.tree.expression
Methods in org.hibernate.query.sqm.tree.expression that return types with arguments of type SqmSortSpecification Modifier and Type Method Description List<SqmSortSpecification>
SqmWindow. getOrderList()
-
Uses of SqmSortSpecification in org.hibernate.query.sqm.tree.select
Methods in org.hibernate.query.sqm.tree.select that return SqmSortSpecification Modifier and Type Method Description SqmSortSpecification
SqmSortSpecification. copy(SqmCopyContext context)
Methods in org.hibernate.query.sqm.tree.select that return types with arguments of type SqmSortSpecification Modifier and Type Method Description List<SqmSortSpecification>
SqmOrderByClause. getSortSpecifications()
List<SqmSortSpecification>
SqmQueryPart. getSortSpecifications()
Methods in org.hibernate.query.sqm.tree.select with parameters of type SqmSortSpecification Modifier and Type Method Description SqmOrderByClause
SqmOrderByClause. addSortSpecification(SqmSortSpecification sortSpecification)
Method parameters in org.hibernate.query.sqm.tree.select with type arguments of type SqmSortSpecification Modifier and Type Method Description void
SqmOrderByClause. setSortSpecifications(List<SqmSortSpecification> sortSpecifications)
-