|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Ordering | |
---|---|
org.apache.cayenne.exp | Cayenne data expression classes. |
org.apache.cayenne.query | Defines standard queries supported by Cayenne and extension mechanism to create custom queries. |
Uses of Ordering in org.apache.cayenne.exp |
---|
Methods in org.apache.cayenne.exp that return Ordering | |
---|---|
Ordering |
Property.asc()
|
Ordering |
Property.ascInsensitive()
|
Ordering |
Property.desc()
|
Ordering |
Property.descInsensitive()
|
Methods in org.apache.cayenne.exp that return types with arguments of type Ordering | |
---|---|
List<Ordering> |
Property.ascInsensitives()
|
List<Ordering> |
Property.ascs()
|
List<Ordering> |
Property.descInsensitives()
|
List<Ordering> |
Property.descs()
|
Uses of Ordering in org.apache.cayenne.query |
---|
Fields in org.apache.cayenne.query with type parameters of type Ordering | |
---|---|
protected List<Ordering> |
SelectQuery.orderings
|
Methods in org.apache.cayenne.query that return types with arguments of type Ordering | |
---|---|
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(List<Ordering> orderings)
Adds a list of orderings. |
|
static SelectQuery<DataRow> |
SelectQuery.dataRowQuery(Class<?> rootClass,
Expression qualifier,
List<Ordering> orderings)
|
|
static void |
Ordering.orderList(List<?> objects,
List<? extends Ordering> orderings)
Orders a given list of objects, using a List of Orderings applied according the default iteration order of the Orderings list. |
|
static
|
SelectQuery.query(Class<T> rootClass,
Expression qualifier,
List<Ordering> orderings)
Creates a SelectQuery that selects objects of a given persistent class that match supplied qualifier. |
Constructor parameters in org.apache.cayenne.query with type arguments of type Ordering | |
---|---|
SelectQuery(Class<T> rootClass,
Expression qualifier,
List<Ordering> orderings)
Creates a SelectQuery that selects objects of a given persistent class that match supplied qualifier. |
|
SelectQuery(DbEntity root,
Expression qualifier,
List<Ordering> orderings)
Creates a SelectQuery for the specified DbEntity with the given qualifier and orderings. |
|
SelectQuery(ObjEntity root,
Expression qualifier,
List<Ordering> orderings)
Creates a SelectQuery for the specified ObjEntity with the given qualifier and orderings. |
|
SelectQuery(String objEntityName,
Expression qualifier,
List<Ordering> orderings)
Creates a SelectQuery that selects objects of a given persistent class that match supplied qualifier. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |