Uses of Class
org.hibernate.sql.ast.tree.select.SortSpecification
-
Packages that use SortSpecification Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.dialect.function Contains implementations ofSqmFunctionDescriptor
describing a range of relatively-sophisticated SQL functions available in various dialects.org.hibernate.query.sqm.function Package defining support for HQL, including JPQL as a subset of HQL.org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.sql.ast Package defining a SQL AST for use in generation of SQL.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.expression AST nodes representing expressions in a SQL tree.org.hibernate.sql.ast.tree.select AST nodes representingselect
statements in a SQL tree. -
-
Uses of SortSpecification in org.hibernate.dialect
Method parameters in org.hibernate.dialect with type arguments of type SortSpecification Modifier and Type Method Description protected void
SQLServerSqlAstTranslator. renderOrderBy(boolean addWhitespace, List<SortSpecification> sortSpecifications)
-
Uses of SortSpecification in org.hibernate.dialect.function
Constructor parameters in org.hibernate.dialect.function with type arguments of type SortSpecification Constructor Description AggregateWindowEmulationQueryTransformer(Over<Object> windowFunction, List<SortSpecification> withinGroup, List<SqlAstNode> arguments)
-
Uses of SortSpecification in org.hibernate.query.sqm.function
Methods in org.hibernate.query.sqm.function that return types with arguments of type SortSpecification Modifier and Type Method Description List<SortSpecification>
SelfRenderingOrderedSetAggregateFunctionSqlAstExpression. getWithinGroup()
-
Uses of SortSpecification in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql that return SortSpecification Modifier and Type Method Description SortSpecification
BaseSqmToSqlAstConverter. visitSortSpecification(SqmSortSpecification sortSpecification)
-
Uses of SortSpecification in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast with parameters of type SortSpecification Modifier and Type Method Description void
SqlAstWalker. visitSortSpecification(SortSpecification sortSpecification)
-
Uses of SortSpecification in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return types with arguments of type SortSpecification Modifier and Type Method Description protected List<SortSpecification>
AbstractSqlAstTranslator. getSortSpecificationsRowNumbering(SelectClause selectClause, QueryPart queryPart)
Methods in org.hibernate.sql.ast.spi with parameters of type SortSpecification Modifier and Type Method Description void
AbstractSqlAstTranslator. visitSortSpecification(SortSpecification sortSpecification)
void
AbstractSqlAstWalker. visitSortSpecification(SortSpecification sortSpecification)
void
ExpressionReplacementWalker. visitSortSpecification(SortSpecification sortSpecification)
Method parameters in org.hibernate.sql.ast.spi with type arguments of type SortSpecification Modifier and Type Method Description protected void
AbstractSqlAstTranslator. renderOrderBy(boolean addWhitespace, List<SortSpecification> sortSpecifications)
protected void
AbstractSqlAstTranslator. visitOrderBy(List<SortSpecification> sortSpecifications)
-
Uses of SortSpecification in org.hibernate.sql.ast.tree.expression
Methods in org.hibernate.sql.ast.tree.expression that return types with arguments of type SortSpecification Modifier and Type Method Description List<SortSpecification>
Over. getOrderList()
List<SortSpecification>
OrderedSetAggregateFunctionExpression. getWithinGroup()
-
Uses of SortSpecification in org.hibernate.sql.ast.tree.select
Methods in org.hibernate.sql.ast.tree.select that return types with arguments of type SortSpecification Modifier and Type Method Description List<SortSpecification>
QueryPart. getSortSpecifications()
Methods in org.hibernate.sql.ast.tree.select with parameters of type SortSpecification Modifier and Type Method Description void
QueryPart. addSortSpecification(SortSpecification specification)
Method parameters in org.hibernate.sql.ast.tree.select with type arguments of type SortSpecification Modifier and Type Method Description void
QueryPart. visitSortSpecifications(Consumer<SortSpecification> consumer)
-