Package org.apache.cayenne.query
package org.apache.cayenne.query
Defines standard queries supported by Cayenne and extension mechanism to create
custom queries. Many of the queries in this package are used by the framework internally.
Normally users would only care about these general query classes:
- SelectQuery
- SQLTemplate
- ProcedureQuery
- QueryChain
- RelationshipQuery
- SingleObjectQuery
Cayenne can "execute" any object as a query as long as it implements Query interface and provides meaningful implementation of either Query.route(...) and/or Query.createSQLAction(SQLActionVisitor)} methods. So users can extend/customize queries if they need to. Custom implementations would normally either create a query from a standard Cayenne set and delegate the execution to it (acting as a sort of "query builder"), or can implement its own non-standard SQLAction.
-
ClassDescriptionA common superclass of Cayenne queries.BatchQuery and its descendants allow to group similar data for the batch database modifications, including inserts, updates and deletes.Represents a single row of values in a BatchQuery.Shared functionality for cacheable queries.Defines forced capitalization of the result column names in the DataRow.ColumnSelect<T>A helper builder for queries selecting individual properties based on the root object.Batched delete query.An EJBQL query representation in Cayenne.A "compiled" version of a
EntityResult
descriptor.FluentSelect<T>Base class forObjectSelect
andColumnSelect
A base superclass for queries that resolve into some other queries during the routing phase.Batched INSERT query.A query that represents a named parameterized non selecting query stored in the mapping.MappedSelect<T>A query that represents a named parameterized selecting query stored in the mapping.A query that matches zero or one object or data row corresponding to the ObjectId.ObjectSelect<T>A selecting query providing chainable API.Defines object sorting criteria, used either for in-memory sorting of object lists or as a specification for building ORDER BY clause of a SelectQuery query.Orderings is provided so that you can chain Ordering together and then use the result to pass into methods that require List<Ordering>Defines a query that can serve as a template for other queries.A hierarchical visitor interface for traversing a tree of PrefetchTreeNodes.A SelectQuery to perform a prefetch based on another query.Defines a node in a prefetch tree.Fluent API for calling stored procedures.A query based on Procedure.Defines minimal API of a query descriptor that is executable via Cayenne.Defines query result caching policy.A Query decorator for a collection of other queries.Provides a common interface for accessing query metadata.An interface used by Queries to route themselves to an appropriate QueryEngine.A query that allows to explicitly clear both object and list caches either via refetch (eager refresh) or invalidate (lazy refresh).A query that selects objects related to a given object via a mapped relationship.Select<T>A common interface for grouping together different kinds of queries that return results.SelectById<T>A query to select objects by id.SelectQuery<T>Deprecated.Constants to order query results (the ORDER BY clause).Defines API for query execution strategy over JDBC connection (as in Strategy Pattern).A factory interface to create standard SQLActions for a set of standard queries.A generic query based on raw SQL and featuring fluent API.SQLSelect<T>A selecting query based on raw SQL and featuring fluent API.A query that executes unchanged (except for template preprocessing) "raw" SQL specified by the user.Batched UPDATE query.
ObjectSelect