Uses of Class
org.apache.cayenne.query.Ordering

Packages that use Ordering
org.apache.cayenne.query Defines standard queries supported by Cayenne and extension mechanism to create custom queries. 
 

Uses of Ordering in org.apache.cayenne.query
 

Fields in org.apache.cayenne.query with type parameters of type Ordering
protected  java.util.List<Ordering> SelectQuery.orderings
           
 

Methods in org.apache.cayenne.query that return types with arguments of type Ordering
 java.util.List<Ordering> SelectQuery.getOrderings()
          Returns a list of orderings used by this query.
 

Methods in org.apache.cayenne.query with parameters of type Ordering
 void SelectQuery.addOrdering(Ordering ordering)
          Adds ordering specification to this query orderings.
 void SelectQuery.removeOrdering(Ordering ordering)
          Removes ordering.
 

Method parameters in org.apache.cayenne.query with type arguments of type Ordering
 void SelectQuery.addOrderings(java.util.List<Ordering> orderings)
          Adds a list of orderings.
static void Ordering.orderList(java.util.List<?> objects, java.util.List<Ordering> orderings)
          Orders a given list of objects, using a List of Orderings applied according the default iteration order of the Orderings list.
 

Constructor parameters in org.apache.cayenne.query with type arguments of type Ordering
SelectQuery(java.lang.Class<?> rootClass, Expression qualifier, java.util.List<Ordering> orderings)
          Creates a SelectQuery that selects objects of a given persistent class that match supplied qualifier.
SelectQuery(DbEntity root, Expression qualifier, java.util.List<Ordering> orderings)
          Creates a SelectQuery for the specified DbEntity with the given qualifier and orderings.
SelectQuery(ObjEntity root, Expression qualifier, java.util.List<Ordering> orderings)
          Creates a SelectQuery for the specified ObjEntity with the given qualifier and orderings.
SelectQuery(java.lang.String objEntityName, Expression qualifier, java.util.List<Ordering> orderings)
          Creates a SelectQuery that selects objects of a given persistent class that match supplied qualifier.
 



Copyright © 2001-2012 Apache Cayenne. All Rights Reserved.