Uses of Interface
jakarta.persistence.criteria.Order
-
Packages that use Order Package Description jakarta.persistence.criteria Jakarta Persistence Criteria API -
-
Uses of Order in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return Order Modifier and Type Method Description Order
CriteriaBuilder. asc(Expression<?> x)
Create an ordering by the ascending value of the expression.Order
CriteriaBuilder. desc(Expression<?> x)
Create an ordering by the descending value of the expression.Order
Order. reverse()
Switch the ordering.Methods in jakarta.persistence.criteria that return types with arguments of type Order Modifier and Type Method Description List<Order>
CriteriaQuery. getOrderList()
Return the ordering expressions in order of precedence.Methods in jakarta.persistence.criteria with parameters of type Order Modifier and Type Method Description CriteriaQuery<T>
CriteriaQuery. orderBy(Order... o)
Specify the ordering expressions that are used to order the query results.Method parameters in jakarta.persistence.criteria with type arguments of type Order Modifier and Type Method Description CriteriaQuery<T>
CriteriaQuery. orderBy(List<Order> o)
Specify the ordering expressions that are used to order the query results.
-