jakarta.persistence.criteria.CriteriaQuery<T>
- Type Parameters:
<T>- the type of the defined result
- Super Interfaces:
AbstractQuery<T>,CriteriaSelect<T>,CommonAbstractCriteria
CriteriaQuery interface defines functionality that is specific to top-level queries. - Since:
- Jakarta Persistence (JPA) 2.0
CriteriaQuery.Public Instance Methods
AbstractQuery method.AbstractQuery.distinct- Parameters:
distinct- boolean value specifying whether duplicate results must be eliminated from the query result or whether they must be retained
- Returns:
- the modified query..
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery<T>- Parameters:
entityClass- the entity class
- Returns:
- query root corresponding to the given entity.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery<T>- Parameters:
entity- metamodel entity representing the entity of type X
- Returns:
- query root corresponding to the given entity.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery<T>- Returns:
- the list of grouping expressions.
- Since:
- Jakarta Persistence (JPA) 1.0
- Returns:
- the list of ordering expressions.
- Since:
- Jakarta Persistence (JPA) 1.0
CommonAbstractCriteria- Returns:
- the query parameters.
- Since:
- Jakarta Persistence (JPA) 1.0
CommonAbstractCriteria- Returns:
- where clause predicate.
- Since:
- Jakarta Persistence (JPA) 1.0
Class<T> getResultType()createQuery or subquery method, that type is returned. If the query was created using the createTupleQuery method, the result type is Tuple. Otherwise, the result type is Object.AbstractQuery<T>- Returns:
- result type.
- Since:
- Jakarta Persistence (JPA) 1.0
CriteriaQuery<T> or Subquery<T> itself, including any subquery roots defined as a result of correlation. Returns an empty set if no roots have been defined. Modifications to the set do not affect the query.AbstractQuery<T>- Returns:
- the set of query roots.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.groupBy- Parameters:
grouping- zero or more grouping expressions
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.groupBy- Parameters:
grouping- list of zero or more grouping expressions
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.having- Parameters:
restriction- a simple or compound boolean expression
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.having- Parameters:
restrictions- zero or more restriction predicates
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.having- Parameters:
restrictions- a list of zero or more restriction predicates
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 3.2
boolean isDistinct()AbstractQuery<T>- Returns:
- boolean indicating whether duplicate query results must be eliminated.
- Since:
- Jakarta Persistence (JPA) 1.0
The type of the result of the query execution depends on the specification of the type of the criteria query object created as well as the arguments to the multiselect method.
An argument to the multiselect method must not be a tuple- or array-valued compound selection item.
The semantics of this method are as follows:
- If the type of the criteria query is
CriteriaQuery(i.e., a criteria query object created by either thecreateTupleQuerymethod or by passing aTupleclass argument to thecreateQuerymethod), aTupleobject corresponding to the arguments of themultiselectmethod, in the specified order, will be instantiated and returned for each row that results from the query execution. - If the type of the criteria query is
CriteriaQueryfor some user-defined class X (i.e., a criteria query object created by passing a X class argument to thecreateQuerymethod), the arguments to themultiselectmethod will be passed to the X constructor and an instance of type X will be returned for each row. - If the type of the criteria query is
CriteriaQueryfor some class X, an instance of typeX[]will be returned for each row. The elements of the array will correspond to the arguments of themultiselectmethod, in the specified order. - If the type of the criteria query is
CriteriaQueryor if the criteria query was created without specifying a type, and only a single argument is passed to themultiselectmethod, an instance of typeObjectwill be returned for each row. - If the type of the criteria query is
CriteriaQueryor if the criteria query was created without specifying a type, and more than one argument is passed to themultiselectmethod, an instance of typeObject[]will be instantiated and returned for each row. The elements of the array will correspond to the arguments to themultiselectmethod, in the specified order.
- Parameters:
selections- selection items corresponding to the results to be returned by the query
- Returns:
- the modified query.
- Throws:
- if a selection item is not valid or if more than one selection item has the same assigned alias.IllegalArgumentException
- Deprecated:
- Since this method is not typesafe, the use of
CriteriaBuilder.arrayorCriteriaBuilder.tuplewithselectis strongly preferred.
- Since:
- Jakarta Persistence (JPA) 1.0
The type of the result of the query execution depends on the specification of the type of the criteria query object created as well as the argument to the multiselect method. An element of the list passed to the multiselect method must not be a tuple- or array-valued compound selection item.
The semantics of this method are as follows:
- If the type of the criteria query is
CriteriaQuery(i.e., a criteria query object created by either thecreateTupleQuerymethod or by passing aTupleclass argument to thecreateQuerymethod), aTupleobject corresponding to the elements of the list passed to themultiselectmethod, in the specified order, will be instantiated and returned for each row that results from the query execution. - If the type of the criteria query is
CriteriaQueryfor some user-defined class X (i.e., a criteria query object created by passing a X class argument to thecreateQuerymethod), the elements of the list passed to themultiselectmethod will be passed to the X constructor and an instance of type X will be returned for each row. - If the type of the criteria query is
CriteriaQueryfor some class X, an instance of typeX[]will be returned for each row. The elements of the array will correspond to the elements of the list passed to themultiselectmethod, in the specified order. - If the type of the criteria query is
CriteriaQueryor if the criteria query was created without specifying a type, and the list passed to themultiselectmethod contains only a single element, an instance of typeObjectwill be returned for each row. - If the type of the criteria query is
CriteriaQueryor if the criteria query was created without specifying a type, and the list passed to themultiselectmethod contains more than one element, an instance of typeObject[]will be instantiated and returned for each row. The elements of the array will correspond to the elements of the list passed to themultiselectmethod, in the specified order.
- Parameters:
selectionList- list of selection items corresponding to the results to be returned by the query
- Returns:
- the modified query.
- Throws:
- if a selection item is not valid or if more than one selection item has the same assigned alias.IllegalArgumentException
- Deprecated:
- Since this method is not typesafe, the use of
CriteriaBuilder.arrayorCriteriaBuilder.tuplewithselectis strongly preferred.
- Since:
- Jakarta Persistence (JPA) 1.0
- Parameters:
o- zero or more ordering expressions
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
- Parameters:
o- list of zero or more ordering expressions
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
Note: Applications using the string-based API may need to specify the type of the select item when it results from a get or join operation and the query result type is specified.
For example:
CriteriaQuery q = cb.createQuery(String.class); Root order = q.from(Order.class); q.select(order.get("shippingAddress").get("state")); CriteriaQuery q2 = cb.createQuery(Product.class); q2.select(q2.from(Order.class) .join("items") .join("product"));
- Parameters:
selection- selection specifying the item that is to be returned in the query result
- Returns:
- the modified query.
- Throws:
- if the selection is a compound selection and more than one selection item has the same assigned alias.IllegalArgumentException
- Since:
- Jakarta Persistence (JPA) 1.0
CommonAbstractCriteria- Parameters:
type- the subquery result type
- Returns:
- subquery.
- Since:
- Jakarta Persistence (JPA) 1.0
CommonAbstractCriteria- Parameters:
type- the subquery result type
- Returns:
- subquery.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.where- Parameters:
restriction- a simple or compound boolean expression
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.where- Parameters:
restrictions- zero or more restriction predicates
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 1.0
AbstractQuery method.AbstractQuery.where- Parameters:
restrictions- a list of zero or more restriction predicates
- Returns:
- the modified query.
- Since:
- Jakarta Persistence (JPA) 3.2