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 details -
-
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)static <T> Order<T>Order. asc(SingularAttribute<T,?> attribute)static <T> Order<T>Order. asc(Class<T> entityClass, String attributeName)static Order<Object[]>Order. by(int element, SortDirection direction)static Order<Object[]>Order. by(int element, SortDirection direction, NullPrecedence nullPrecedence)static <T> Order<T>Order. by(SingularAttribute<T,?> attribute, SortDirection direction)static <T> Order<T>Order. by(SingularAttribute<T,?> attribute, SortDirection direction, NullPrecedence nullPrecedence)static <T> Order<T>Order. by(Class<T> entityClass, String attributeName, SortDirection direction)static <T> Order<T>Order. by(Class<T> entityClass, String attributeName, SortDirection direction, NullPrecedence nullPrecedence)static Order<Object[]>Order. desc(int element)static <T> Order<T>Order. desc(SingularAttribute<T,?> attribute)static <T> Order<T>Order. desc(Class<T> entityClass, String attributeName)Methods in org.hibernate.query with parameters of type Order Modifier and Type Method Description 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 Query<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)SelectionQuery<R>SqmSelectionQueryImpl. 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>> orderList)SelectionQuery<R>SqmSelectionQueryImpl. setOrder(List<Order<? super R>> orderList)
-