Uses of Class
org.apache.cayenne.query.Ordering
Packages that use Ordering
Package
Description
Property API
Contains O/R mapping classes that store relational database
metadata information and map it to Java classes.
Defines standard queries supported by Cayenne and extension mechanism to create
custom queries.
-
Uses of Ordering in org.apache.cayenne.access.translator.select
Methods in org.apache.cayenne.access.translator.select that return types with arguments of type OrderingModifier and TypeMethodDescriptionFluentSelectWrapper.getOrderings()
TranslatableQueryWrapper.getOrderings()
-
Uses of Ordering in org.apache.cayenne.exp.property
Methods in org.apache.cayenne.exp.property that return OrderingModifier and TypeMethodDescriptionBaseProperty.asc()
BaseProperty.ascInsensitive()
BaseProperty.desc()
BaseProperty.descInsensitive()
-
Uses of Ordering in org.apache.cayenne.map
Fields in org.apache.cayenne.map with type parameters of type OrderingMethods in org.apache.cayenne.map that return types with arguments of type OrderingModifier and TypeMethodDescriptionSelectQueryDescriptor.getOrderings()
Returns list of orderings for this query.Methods in org.apache.cayenne.map with parameters of type OrderingModifier and TypeMethodDescriptionvoid
SelectQueryDescriptor.addOrdering
(Ordering ordering) Adds single ordering for this query.void
SelectQueryDescriptor.removeOrdering
(Ordering ordering) Removes single ordering from this query.Method parameters in org.apache.cayenne.map with type arguments of type OrderingModifier and TypeMethodDescriptionvoid
SelectQueryDescriptor.setOrderings
(List<Ordering> orderings) Sets list of orderings for this query. -
Uses of Ordering in org.apache.cayenne.query
Fields in org.apache.cayenne.query with type parameters of type OrderingMethods in org.apache.cayenne.query that return types with arguments of type OrderingMethods in org.apache.cayenne.query with parameters of type OrderingModifier and TypeMethodDescriptionAdd one or more orderings to this query.Returns Orderings with this Ordering followed by the provided next Ordering.Adds the given sort ordering to the end of this list and returns "this" so it can be chained again.Method parameters in org.apache.cayenne.query with type arguments of type OrderingModifier and TypeMethodDescriptionFluentSelect.orderBy
(Collection<Ordering> orderings) Adds a list of orderings to this query.static <E> List
<E> Ordering.orderedList
(Collection<E> 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 <T> ObjectSelect
<T> ObjectSelect.query
(Class<T> entityType, Expression expression, List<Ordering> orderings) Creates a ObjectSelect that selects objects of a given persistent class and uses provided expression for its qualifier.Constructors in org.apache.cayenne.query with parameters of type OrderingConstructor parameters in org.apache.cayenne.query with type arguments of type Ordering