Uses of Class
org.hibernate.query.sqm.SortOrder
-
Packages that use SortOrder Package Description org.hibernate.metamodel.mapping.internal org.hibernate.metamodel.mapping.ordering.ast org.hibernate.query.criteria Hibernate's support for JPA criteria queries.org.hibernate.query.sqm org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.tree.cte org.hibernate.query.sqm.tree.select org.hibernate.sql.ast.spi Package defining support for creating and consuming SQL ASTorg.hibernate.sql.ast.tree.cte org.hibernate.sql.ast.tree.select -
-
Uses of SortOrder in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal with parameters of type SortOrder Modifier and Type Method Description void
AbstractDomainPath. apply(ModelPart referenceModelPart, QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortOrder sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)
void
AbstractDomainPath. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortOrder sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)
-
Uses of SortOrder in org.hibernate.metamodel.mapping.ordering.ast
Methods in org.hibernate.metamodel.mapping.ordering.ast that return SortOrder Modifier and Type Method Description SortOrder
OrderingSpecification. getSortOrder()
Methods in org.hibernate.metamodel.mapping.ordering.ast with parameters of type SortOrder Modifier and Type Method Description void
ColumnReference. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortOrder sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)
void
FunctionExpression. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortOrder sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)
void
OrderingExpression. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortOrder sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)
Apply the SQL AST sort-specifications associated with this ordering-expressionvoid
SelfRenderingOrderingExpression. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortOrder sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)
void
OrderingSpecification. setSortOrder(SortOrder sortOrder)
-
Uses of SortOrder in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return SortOrder Modifier and Type Method Description SortOrder
JpaOrder. getSortOrder()
Methods in org.hibernate.query.criteria with parameters of type SortOrder Modifier and Type Method Description JpaOrder
HibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder)
JpaOrder
HibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of SortOrder in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return SortOrder Modifier and Type Method Description static SortOrder
SortOrder. interpret(String value)
abstract SortOrder
SortOrder. reverse()
static SortOrder
SortOrder. valueOf(String name)
Returns the enum constant of this type with the specified name.static SortOrder[]
SortOrder. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.query.sqm with parameters of type SortOrder Modifier and Type Method Description abstract boolean
NullPrecedence. isDefaultOrdering(SortOrder sortOrder, NullOrdering nullOrdering)
Is this null precedence the default for the given sort order and null ordering.SqmSortSpecification
NodeBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder)
SqmSortSpecification
NodeBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of SortOrder in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type SortOrder Modifier and Type Method Description SqmSortSpecification
SqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder)
SqmSortSpecification
SqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of SortOrder in org.hibernate.query.sqm.tree.cte
Methods in org.hibernate.query.sqm.tree.cte that return SortOrder Modifier and Type Method Description SortOrder
SqmSearchClauseSpecification. getSortOrder()
Constructors in org.hibernate.query.sqm.tree.cte with parameters of type SortOrder Constructor Description SqmSearchClauseSpecification(SqmCteTableColumn cteColumn, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of SortOrder in org.hibernate.query.sqm.tree.select
Methods in org.hibernate.query.sqm.tree.select that return SortOrder Modifier and Type Method Description SortOrder
SqmSortSpecification. getSortOrder()
Constructors in org.hibernate.query.sqm.tree.select with parameters of type SortOrder Constructor Description SqmSortSpecification(SqmExpression sortExpression, SortOrder sortOrder)
SqmSortSpecification(SqmExpression sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of SortOrder in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type SortOrder Modifier and Type Method Description protected void
AbstractSqlAstTranslator. visitSortSpecification(Expression sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of SortOrder in org.hibernate.sql.ast.tree.cte
Methods in org.hibernate.sql.ast.tree.cte that return SortOrder Modifier and Type Method Description SortOrder
SearchClauseSpecification. getSortOrder()
Constructors in org.hibernate.sql.ast.tree.cte with parameters of type SortOrder Constructor Description SearchClauseSpecification(CteColumn cteColumn, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of SortOrder in org.hibernate.sql.ast.tree.select
Methods in org.hibernate.sql.ast.tree.select that return SortOrder Modifier and Type Method Description SortOrder
SortSpecification. getSortOrder()
Constructors in org.hibernate.sql.ast.tree.select with parameters of type SortOrder Constructor Description SortSpecification(Expression sortExpression, SortOrder sortOrder)
SortSpecification(Expression sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-