Uses of Interface
javax.persistence.criteria.Order

Packages that use Order
javax.persistence.criteria   
 

Uses of Order in javax.persistence.criteria
 

Methods in javax.persistence.criteria that return Order
 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 javax.persistence.criteria that return types with arguments of type Order
 List<Order> CriteriaQuery.getOrderList()
          Return the ordering expressions in order of precedence.
 

Methods in javax.persistence.criteria with parameters of type Order
 CriteriaQuery<T> CriteriaQuery.orderBy(Order... o)
          Specify the ordering expressions that are used to order the query results.
 

Method parameters in javax.persistence.criteria with type arguments of type Order
 CriteriaQuery<T> CriteriaQuery.orderBy(List<Order> o)
          Specify the ordering expressions that are used to order the query results.
 



Copyright © 2007-2010 Hibernate.org. All Rights Reserved.