Uses of Class
org.hibernate.query.NullPrecedence
-
Packages that use NullPrecedence Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.metamodel.mapping.internal org.hibernate.metamodel.mapping.ordering.ast org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.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 extendingHibernateCriteriaBuilderwith additional functionality by registering aService.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.tree.cte Nodes representing common table expressions (CTE) in the SQM tree.org.hibernate.query.sqm.tree.select Nodes representingselectstatements in the SQM tree.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.cte Support for common table expressions (CTE) in a SQL tree.org.hibernate.sql.ast.tree.select AST nodes representingselectstatements in a SQL tree. -
-
Uses of NullPrecedence in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type NullPrecedence Modifier and Type Method Description SessionFactoryBuilderSessionFactoryBuilder. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)Apply a null precedence,NULLS FIRSTorNULLS LAST, toorder byclauses 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 NullPrecedenceSessionFactoryOptionsBuilder. getDefaultNullPrecedence()Methods in org.hibernate.boot.internal with parameters of type NullPrecedence Modifier and Type Method Description SessionFactoryBuilderSessionFactoryBuilderImpl. applyDefaultNullPrecedence(NullPrecedence nullPrecedence)voidSessionFactoryOptionsBuilder. 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 NullPrecedenceAbstractDelegatingSessionFactoryOptions. getDefaultNullPrecedence()NullPrecedenceSessionFactoryOptions. getDefaultNullPrecedence()Methods in org.hibernate.boot.spi with parameters of type NullPrecedence Modifier and Type Method Description TAbstractDelegatingSessionFactoryBuilder. 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 voidAbstractDomainPath. apply(ModelPart referenceModelPart, QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortDirection sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)voidAbstractDomainPath. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortDirection 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 NullPrecedenceOrderingSpecification. getNullPrecedence()Methods in org.hibernate.metamodel.mapping.ordering.ast with parameters of type NullPrecedence Modifier and Type Method Description voidColumnReference. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortDirection sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)voidFunctionExpression. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortDirection sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)voidOrderingExpression. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortDirection sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)Apply the SQL AST sort-specifications associated with this ordering-expressionvoidSelfRenderingOrderingExpression. apply(QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortDirection sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)voidOrderingSpecification. setNullPrecedence(NullPrecedence nullPrecedence) -
Uses of NullPrecedence in org.hibernate.query
Methods in org.hibernate.query that return NullPrecedence Modifier and Type Method Description NullPrecedenceOrder. getNullPrecedence()static NullPrecedenceNullPrecedence. parse(String name)Interprets a string representation of a NullPrecedence, returningnullby default.static NullPrecedenceNullPrecedence. parse(String name, NullPrecedence defaultValue)Interprets a string representation of a NullPrecedence, returning the specified default if not recognized.static NullPrecedenceNullPrecedence. 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 with parameters of type NullPrecedence Modifier and Type Method Description static Order<Object[]>Order. by(int element, SortDirection direction, NullPrecedence nullPrecedence)An order where the result set is sorted by the select item in the given position in the given direction, with the specified precedence for null values.static <T> Order<T>Order. by(SingularAttribute<T,?> attribute, SortDirection direction, NullPrecedence nullPrecedence)An order where an entity is sorted by the given attribute, in the given direction, with the specified precedence for null values.static <T> Order<T>Order. by(Class<T> entityClass, String attributeName, SortDirection direction, NullPrecedence nullPrecedence)An order where an entity of the given class is sorted by the attribute with the given name, in the given direction.static NullPrecedenceNullPrecedence. parse(String name, NullPrecedence defaultValue)Interprets a string representation of a NullPrecedence, returning the specified default if not recognized. -
Uses of NullPrecedence in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return NullPrecedence Modifier and Type Method Description NullPrecedenceJpaOrder. getNullPrecedence()The precedence for nulls for this order elementNullPrecedenceJpaSearchOrder. getNullPrecedence()The precedence for nulls for this search order elementMethods in org.hibernate.query.criteria with parameters of type NullPrecedence Modifier and Type Method Description <T> JpaExpression<T>HibernateCriteriaBuilder. mode(Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilder. mode(JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilder. mode(JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)Create amodeordered set-aggregate function expression.<T> JpaExpression<T>HibernateCriteriaBuilder. mode(JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)JpaOrderJpaOrder. nullPrecedence(NullPrecedence precedence)Set the precedence of nulls for this order elementJpaSearchOrderJpaSearchOrder. nullPrecedence(NullPrecedence precedence)Set the precedence of nulls for this search order element<T> JpaExpression<T>HibernateCriteriaBuilder. percentileCont(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilder. percentileCont(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilder. percentileCont(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)Create apercentile_contordered set-aggregate function expression.<T> JpaExpression<T>HibernateCriteriaBuilder. percentileCont(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilder. percentileDisc(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilder. percentileDisc(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilder. percentileDisc(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)Create apercentile_discordered set-aggregate function expression.<T> JpaExpression<T>HibernateCriteriaBuilder. percentileDisc(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)JpaSearchOrderHibernateCriteriaBuilder. 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.JpaOrderHibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)JpaOrderHibernateCriteriaBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase) -
Uses of NullPrecedence in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi with parameters of type NullPrecedence Modifier and Type Method Description <T> JpaExpression<T>HibernateCriteriaBuilderDelegate. mode(Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. mode(JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. mode(JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. mode(JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileCont(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileCont(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileCont(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileCont(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileDisc(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileDisc(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileDisc(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> JpaExpression<T>HibernateCriteriaBuilderDelegate. percentileDisc(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)JpaSearchOrderHibernateCriteriaBuilderDelegate. search(JpaCteCriteriaAttribute cteAttribute, SortDirection sortOrder, NullPrecedence nullPrecedence)JpaOrderHibernateCriteriaBuilderDelegate. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)JpaOrderHibernateCriteriaBuilderDelegate. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase) -
Uses of NullPrecedence in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm with parameters of type NullPrecedence Modifier and Type Method Description SqmSortSpecificationNodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)SqmSortSpecificationNodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase) -
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 <T> SqmExpression<T>SqmCriteriaNodeBuilder. mode(Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. mode(JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. mode(JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. mode(JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileCont(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileCont(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileCont(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileCont(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileDisc(Expression<? extends Number> argument, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileDisc(Expression<? extends Number> argument, JpaPredicate filter, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileDisc(Expression<? extends Number> argument, JpaPredicate filter, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)<T> SqmExpression<T>SqmCriteriaNodeBuilder. percentileDisc(Expression<? extends Number> argument, JpaWindow window, Expression<T> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)JpaSearchOrderSqmCriteriaNodeBuilder. search(JpaCteCriteriaAttribute sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)SqmSortSpecificationSqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)SqmSortSpecificationSqmCriteriaNodeBuilder. sort(JpaExpression<?> sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase) -
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 NullPrecedenceSqmSearchClauseSpecification. getNullPrecedence()Methods in org.hibernate.query.sqm.tree.cte with parameters of type NullPrecedence Modifier and Type Method Description JpaSearchOrderSqmSearchClauseSpecification. nullPrecedence(NullPrecedence precedence)Constructors in org.hibernate.query.sqm.tree.cte with parameters of type NullPrecedence Constructor Description SqmSearchClauseSpecification(SqmCteTableColumn cteColumn, SortDirection 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 NullPrecedenceSqmSortSpecification. getNullPrecedence()Methods in org.hibernate.query.sqm.tree.select with parameters of type NullPrecedence Modifier and Type Method Description JpaOrderSqmSortSpecification. nullPrecedence(NullPrecedence nullPrecedence)Constructors in org.hibernate.query.sqm.tree.select with parameters of type NullPrecedence Constructor Description SqmSortSpecification(SqmExpression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)SqmSortSpecification(SqmExpression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase) -
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 voidAbstractSqlAstTranslator. emulateSortSpecificationNullPrecedence(Expression sortExpression, NullPrecedence nullPrecedence)protected voidAbstractSqlAstTranslator. visitSortSpecification(Expression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase) -
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 NullPrecedenceSearchClauseSpecification. getNullPrecedence()Constructors in org.hibernate.sql.ast.tree.cte with parameters of type NullPrecedence Constructor Description SearchClauseSpecification(CteColumn cteColumn, SortDirection 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 NullPrecedenceSortSpecification. getNullPrecedence()Constructors in org.hibernate.sql.ast.tree.select with parameters of type NullPrecedence Constructor Description SortSpecification(Expression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence)SortSpecification(Expression sortExpression, SortDirection sortOrder, NullPrecedence nullPrecedence, boolean ignoreCase)
-