Uses of Class
org.hibernate.query.Order
-
Packages that use Order Package Description org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.spi SPI-level SQM contracts -
-
Uses of Order in org.hibernate.procedure.internal
Methods in org.hibernate.procedure.internal with parameters of type Order Modifier and Type Method Description Query<R>
ProcedureCallImpl. setOrder(Order<? super R> order)
Method parameters in org.hibernate.procedure.internal with type arguments of type Order Modifier and Type Method Description Query<R>
ProcedureCallImpl. setOrder(List<Order<? super R>> orderList)
-
Uses of Order in org.hibernate.query
Methods in org.hibernate.query that return Order Modifier and Type Method Description static Order<Object[]>
Order. asc(int element)
An order where the result set is sorted by the select item in the given position with smaller values first.static <T> Order<T>
Order. asc(SingularAttribute<T,?> attribute)
An order where an entity is sorted by the given attribute, with smaller values first.static <T> Order<T>
Order. asc(Class<T> entityClass, String attributeName)
An order where an entity of the given class is sorted by the attribute with the given name, with smaller values first.static Order<Object[]>
Order. by(int element, SortDirection direction)
An order where the result set is sorted by the select item in the given position, in the given direction.static Order<Object[]>
Order. by(int element, SortDirection direction, boolean ignoreCase)
An order where the result set is sorted by the select item in the given position in the given direction, with the specified case-sensitivity.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)
An order where an entity is sorted by the given attribute, in the given direction.static <T> Order<T>
Order. by(SingularAttribute<T,?> attribute, SortDirection direction, boolean ignoreCase)
An order where an entity is sorted by the given attribute, in the given direction, with the specified case-sensitivity.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)
An order where an entity of the given class is sorted by the attribute with the given name, in the given direction.static <T> Order<T>
Order. by(Class<T> entityClass, String attributeName, SortDirection direction, boolean ignoreCase)
An order where an entity of the given class is sorted by the attribute with the given name, in the given direction, with the specified case-sensitivity.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 Order<Object[]>
Order. desc(int element)
An order where the result set is sorted by the select item in the given position with larger values first.static <T> Order<T>
Order. desc(SingularAttribute<T,?> attribute)
An order where an entity is sorted by the given attribute, with larger values first.static <T> Order<T>
Order. desc(Class<T> entityClass, String attributeName)
An order where an entity of the given class is sorted by the attribute with the given name, with larger values first.Order<X>
Order. ignoringCase()
Order<X>
Order. reverse()
Order<X>
Order. withNullsFirst()
Order<X>
Order. withNullsLast()
Methods in org.hibernate.query that return types with arguments of type Order Modifier and Type Method Description List<Order<? super R>>
KeyedPage. getKeyDefinition()
A key definition for key-based pagination.static <T> List<Order<? super T>>
Order. reverse(List<Order<? super T>> ordering)
Reverse the direction of the given ordering listMethods in org.hibernate.query with parameters of type Order Modifier and Type Method Description <R> KeyedPage<R>
Page. keyedBy(Order<? super R> keyDefinition)
Obtain a key-based specification of this page.Query<R>
Query. setOrder(Order<? super R> order)
SelectionQuery<R>
SelectionQuery. setOrder(Order<? super R> order)
If the result type of this query is an entity class, add a rule for ordering the query results.Method parameters in org.hibernate.query with type arguments of type Order Modifier and Type Method Description <R> KeyedPage<R>
Page. keyedBy(List<Order<? super R>> keyDefinition)
Obtain a key-based specification of this page.static <T> List<Order<? super T>>
Order. reverse(List<Order<? super T>> ordering)
Reverse the direction of the given ordering listQuery<R>
Query. setOrder(List<Order<? super R>> orderList)
SelectionQuery<R>
SelectionQuery. setOrder(List<Order<? super R>> orderList)
If the result type of this query is an entity class, add one or more rules for ordering the query results. -
Uses of Order in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type Order Modifier and Type Method Description Query<R>
AbstractQuery. setOrder(Order<? super R> order)
Method parameters in org.hibernate.query.spi with type arguments of type Order Modifier and Type Method Description Query<R>
AbstractQuery. setOrder(List<Order<? super R>> orders)
-
Uses of Order in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type Order Modifier and Type Method Description Query<R>
NativeQueryImpl. setOrder(Order<? super R> order)
Method parameters in org.hibernate.query.sql.internal with type arguments of type Order Modifier and Type Method Description Query<R>
NativeQueryImpl. setOrder(List<Order<? super R>> orderList)
-
Uses of Order in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type Order Modifier and Type Method Description Query<R>
QuerySqmImpl. setOrder(Order<? super R> order)
Method parameters in org.hibernate.query.sqm.internal with type arguments of type Order Modifier and Type Method Description Query<R>
QuerySqmImpl. setOrder(List<Order<? super R>> orders)
-
Uses of Order in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type Order Modifier and Type Method Description SqmSelectionQueryImplementor<R>
DelegatingSqmSelectionQueryImplementor. setOrder(Order<? super R> order)
Method parameters in org.hibernate.query.sqm.spi with type arguments of type Order Modifier and Type Method Description SqmSelectionQueryImplementor<R>
DelegatingSqmSelectionQueryImplementor. setOrder(List<Order<? super R>> orders)
-