Uses of Class
org.hibernate.query.sqm.NullPrecedence
-
Packages that use NullPrecedence Package Description org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.internal org.hibernate.boot.spi 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 NullPrecedence in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type NullPrecedence Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)
Apply a null precedence (NULLS FIRST, NULLS LAST) to be applied to order by clauses rendered in SQL queries. -
Uses of NullPrecedence in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return NullPrecedence Modifier and Type Method Description NullPrecedence
SessionFactoryOptionsBuilder. getDefaultNullPrecedence()
Methods in org.hibernate.boot.internal with parameters of type NullPrecedence Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilderImpl. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)
void
SessionFactoryOptionsBuilder. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return NullPrecedence Modifier and Type Method Description NullPrecedence
AbstractDelegatingSessionFactoryOptions. getDefaultNullPrecedence()
NullPrecedence
SessionFactoryOptions. getDefaultNullPrecedence()
Methods in org.hibernate.boot.spi with parameters of type NullPrecedence Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal with parameters of type NullPrecedence 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 NullPrecedence in org.hibernate.metamodel.mapping.ordering.ast
Methods in org.hibernate.metamodel.mapping.ordering.ast that return NullPrecedence Modifier and Type Method Description NullPrecedence
OrderingSpecification. getNullPrecedence()
Methods in org.hibernate.metamodel.mapping.ordering.ast with parameters of type NullPrecedence 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. setNullPrecedence(NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return NullPrecedence Modifier and Type Method Description NullPrecedence
JpaOrder. getNullPrecedence()
The precedence for nulls for this order elementMethods in org.hibernate.query.criteria with parameters of type NullPrecedence Modifier and Type Method Description JpaOrder
JpaOrder. nullPrecedence(NullPrecedence precedence)
Set the precedence for nulls for this order elementJpaOrder
HibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return NullPrecedence Modifier and Type Method Description static NullPrecedence
NullPrecedence. parse(String name)
Interprets a string representation of a NullPrecedence, returningnull
by default.static NullPrecedence
NullPrecedence. parse(String name, NullPrecedence defaultValue)
Interprets a string representation of a NullPrecedence, returning the specified default if not recognized.static NullPrecedence
NullPrecedence. valueOf(String name)
Returns the enum constant of this type with the specified name.static NullPrecedence[]
NullPrecedence. 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 NullPrecedence Modifier and Type Method Description static NullPrecedence
NullPrecedence. parse(String name, NullPrecedence defaultValue)
Interprets a string representation of a NullPrecedence, returning the specified default if not recognized.SqmSortSpecification
NodeBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type NullPrecedence Modifier and Type Method Description SqmSortSpecification
SqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.query.sqm.tree.cte
Methods in org.hibernate.query.sqm.tree.cte that return NullPrecedence Modifier and Type Method Description NullPrecedence
SqmSearchClauseSpecification. getNullPrecedence()
Constructors in org.hibernate.query.sqm.tree.cte with parameters of type NullPrecedence Constructor Description SqmSearchClauseSpecification(SqmCteTableColumn cteColumn, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.query.sqm.tree.select
Methods in org.hibernate.query.sqm.tree.select that return NullPrecedence Modifier and Type Method Description NullPrecedence
SqmSortSpecification. getNullPrecedence()
Methods in org.hibernate.query.sqm.tree.select with parameters of type NullPrecedence Modifier and Type Method Description JpaOrder
SqmSortSpecification. nullPrecedence(NullPrecedence nullPrecedence)
Constructors in org.hibernate.query.sqm.tree.select with parameters of type NullPrecedence Constructor Description SqmSortSpecification(SqmExpression sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type NullPrecedence Modifier and Type Method Description protected void
AbstractSqlAstTranslator. emulateSortSpecificationNullPrecedence(Expression sortExpression, NullPrecedence nullPrecedence)
protected void
AbstractSqlAstTranslator. visitSortSpecification(Expression sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.sql.ast.tree.cte
Methods in org.hibernate.sql.ast.tree.cte that return NullPrecedence Modifier and Type Method Description NullPrecedence
SearchClauseSpecification. getNullPrecedence()
Constructors in org.hibernate.sql.ast.tree.cte with parameters of type NullPrecedence Constructor Description SearchClauseSpecification(CteColumn cteColumn, SortOrder sortOrder, NullPrecedence nullPrecedence)
-
Uses of NullPrecedence in org.hibernate.sql.ast.tree.select
Methods in org.hibernate.sql.ast.tree.select that return NullPrecedence Modifier and Type Method Description NullPrecedence
SortSpecification. getNullPrecedence()
Constructors in org.hibernate.sql.ast.tree.select with parameters of type NullPrecedence Constructor Description SortSpecification(Expression sortExpression, SortOrder sortOrder, NullPrecedence nullPrecedence)
-