Package org.hibernate.query.criteria
Interface JpaCriteriaQuery<T>
- All Superinterfaces:
AbstractQuery<T>,CommonAbstractCriteria,CriteriaQuery<T>,JpaCriteriaBase,JpaCriteriaNode,JpaCteContainer,JpaQueryableCriteria<T>,JpaSelectCriteria<T>,Serializable
- All Known Implementing Classes:
CriteriaDefinition,SqmSelectStatement
public interface JpaCriteriaQuery<T>
extends CriteriaQuery<T>, JpaQueryableCriteria<T>, JpaSelectCriteria<T>
Extension of the JPA
CriteriaQuery- Author:
- Steve Ebersole
-
Method Summary
Modifier and TypeMethodDescriptionA query that returns the number of results of this query.distinct(boolean distinct) Specify whether duplicate query results will be eliminated.fetch(Number fetch, FetchClauseType fetchClauseType) fetch(JpaExpression<? extends Number> fetch) fetch(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) <X> JpaRoot<X>from(EntityType<X> entity) Create and add a query root corresponding to the given entity, forming a cartesian product with any existing roots.<X> JpaRoot<X>Create and add a query root corresponding to the given entity, forming a cartesian product with any existing roots.getFetch()Return the ordering expressions in order of precedence.Return the parameters of the query.Return the roots as a list.groupBy(Expression<?>... grouping) Specify the expressions that are used to form groups over the query results.groupBy(List<Expression<?>> grouping) Specify the expressions that are used to form groups over the query results.having(Expression<Boolean> restriction) Specify a restriction over the groups of the query.Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates.multiselect(Selection<?>... selections) Specify the selection items that are to be returned in the query result.multiselect(List<Selection<?>> selectionList) Specify the selection items that are to be returned in the query result.offset(JpaExpression<? extends Number> offset) Specify the ordering expressions that are used to order the query results.Specify the ordering expressions that are used to order the query results.Specify the item that is to be returned in the query result.where(Expression<Boolean> restriction) Modify the query to restrict the query result according to the specified boolean expression.Modify the query to restrict the query result according to the conjunction of the specified restriction predicates.Methods inherited from interface jakarta.persistence.criteria.AbstractQuery
getGroupList, getResultType, getRoots, isDistinctMethods inherited from interface org.hibernate.query.criteria.JpaCriteriaBase
subqueryMethods inherited from interface org.hibernate.query.criteria.JpaCteContainer
getCteCriteria, getCteCriterias, with, with, withRecursiveUnionAll, withRecursiveUnionAll, withRecursiveUnionDistinct, withRecursiveUnionDistinctMethods inherited from interface org.hibernate.query.criteria.JpaSelectCriteria
from, from, getGroupRestriction, getQueryPart, getQuerySpec, getRestriction, getSelection
-
Method Details
-
createCountQuery
JpaCriteriaQuery<Long> createCountQuery()A query that returns the number of results of this query.- Since:
- 6.4
- See Also:
-
getOffset
JpaExpression<Number> getOffset() -
offset
-
offset
-
getFetch
JpaExpression<Number> getFetch() -
fetch
-
fetch
-
fetch
-
fetch
-
getFetchClauseType
FetchClauseType getFetchClauseType() -
getRootList
Return the roots as a list. -
getOrderList
Description copied from interface:CriteriaQueryReturn the ordering expressions in order of precedence. Returns empty list if no ordering expressions have been specified. Modifications to the list do not affect the query.- Specified by:
getOrderListin interfaceCriteriaQuery<T>- Returns:
- the list of ordering expressions
-
getParameters
Set<ParameterExpression<?>> getParameters()Return the parameters of the query. Returns empty set if there are no parameters. Modifications to the set do not affect the query.- Specified by:
getParametersin interfaceCriteriaQuery<T>- Returns:
- the query parameters
-
from
Description copied from interface:AbstractQueryCreate and add a query root corresponding to the given entity, forming a cartesian product with any existing roots.- Specified by:
fromin interfaceAbstractQuery<T>- Specified by:
fromin interfaceJpaSelectCriteria<T>- Parameters:
entityClass- the entity class- Returns:
- query root corresponding to the given entity
-
from
Description copied from interface:AbstractQueryCreate and add a query root corresponding to the given entity, forming a cartesian product with any existing roots.- Specified by:
fromin interfaceAbstractQuery<T>- Specified by:
fromin interfaceJpaSelectCriteria<T>- Parameters:
entity- metamodel entity representing the entity of type X- Returns:
- query root corresponding to the given entity
-
distinct
Description copied from interface:CriteriaQuerySpecify whether duplicate query results will be eliminated. A true value will cause duplicates to be eliminated. A false value will cause duplicates to be retained. If distinct has not been specified, duplicate results must be retained. This method only overrides the return type of the correspondingAbstractQuerymethod.- Specified by:
distinctin interfaceAbstractQuery<T>- Specified by:
distinctin interfaceCriteriaQuery<T>- Specified by:
distinctin interfaceJpaSelectCriteria<T>- 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.
-
select
Description copied from interface:CriteriaQuerySpecify the item that is to be returned in the query result. Replaces the previously specified selection(s), if any.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<String> q = cb.createQuery(String.class); Root<Order> order = q.from(Order.class); q.select(order.get("shippingAddress").<String>get("state")); CriteriaQuery<Product> q2 = cb.createQuery(Product.class); q2.select(q2.from(Order.class) .join("items") .<Item,Product>join("product"));- Specified by:
selectin interfaceCriteriaQuery<T>- Parameters:
selection- selection specifying the item that is to be returned in the query result- Returns:
- the modified query
-
multiselect
Description copied from interface:CriteriaQuerySpecify the selection items that are to be returned in the query result. Replaces the previously specified selection(s), if any. 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<Tuple>(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
CriteriaQuery<X>for 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
CriteriaQuery<X[]>for some class X, an instance of type X[] 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
CriteriaQuery<Object>or 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
CriteriaQuery<Object>or 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.
- Specified by:
multiselectin interfaceCriteriaQuery<T>- Parameters:
selections- selection items corresponding to the results to be returned by the query- Returns:
- the modified query
-
If the type of the criteria query is
-
multiselect
Description copied from interface:CriteriaQuerySpecify the selection items that are to be returned in the query result. Replaces the previously specified selection(s), if any.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
multiselectmethod. An element of the list passed to themultiselectmethod 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<Tuple>(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
CriteriaQuery<X>for 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
CriteriaQuery<X[]>for some class X, an instance of type X[] 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
CriteriaQuery<Object>or 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
CriteriaQuery<Object>or 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.
- Specified by:
multiselectin interfaceCriteriaQuery<T>- Parameters:
selectionList- list of selection items corresponding to the results to be returned by the query- Returns:
- the modified query
- If the type of the criteria query is
-
where
Description copied from interface:CriteriaQueryModify the query to restrict the query result according to the specified boolean expression. Replaces the previously added restriction(s), if any. This method only overrides the return type of the correspondingAbstractQuerymethod.- Specified by:
wherein interfaceAbstractQuery<T>- Specified by:
wherein interfaceCriteriaQuery<T>- Specified by:
wherein interfaceJpaSelectCriteria<T>- Parameters:
restriction- a simple or compound boolean expression- Returns:
- the modified query
-
where
Description copied from interface:CriteriaQueryModify the query to restrict the query result according to the conjunction of the specified restriction predicates. Replaces the previously added restriction(s), if any. If no restrictions are specified, any previously added restrictions are simply removed. This method only overrides the return type of the correspondingAbstractQuerymethod.- Specified by:
wherein interfaceAbstractQuery<T>- Specified by:
wherein interfaceCriteriaQuery<T>- Specified by:
wherein interfaceJpaSelectCriteria<T>- Parameters:
restrictions- zero or more restriction predicates- Returns:
- the modified query
-
groupBy
Description copied from interface:CriteriaQuerySpecify the expressions that are used to form groups over the query results. Replaces the previous specified grouping expressions, if any. If no grouping expressions are specified, any previously added grouping expressions are simply removed. This method only overrides the return type of the correspondingAbstractQuerymethod.- Specified by:
groupByin interfaceAbstractQuery<T>- Specified by:
groupByin interfaceCriteriaQuery<T>- Specified by:
groupByin interfaceJpaSelectCriteria<T>- Parameters:
grouping- zero or more grouping expressions- Returns:
- the modified query
-
groupBy
Description copied from interface:CriteriaQuerySpecify the expressions that are used to form groups over the query results. Replaces the previous specified grouping expressions, if any. If no grouping expressions are specified, any previously added grouping expressions are simply removed. This method only overrides the return type of the correspondingAbstractQuerymethod.- Specified by:
groupByin interfaceAbstractQuery<T>- Specified by:
groupByin interfaceCriteriaQuery<T>- Specified by:
groupByin interfaceJpaSelectCriteria<T>- Parameters:
grouping- list of zero or more grouping expressions- Returns:
- the modified query
-
having
Description copied from interface:CriteriaQuerySpecify a restriction over the groups of the query. Replaces the previous having restriction(s), if any. This method only overrides the return type of the correspondingAbstractQuerymethod.- Specified by:
havingin interfaceAbstractQuery<T>- Specified by:
havingin interfaceCriteriaQuery<T>- Specified by:
havingin interfaceJpaSelectCriteria<T>- Parameters:
restriction- a simple or compound boolean expression- Returns:
- the modified query
-
having
Description copied from interface:CriteriaQuerySpecify restrictions over the groups of the query according the conjunction of the specified restriction predicates. Replaces the previously added having restriction(s), if any. If no restrictions are specified, any previously added restrictions are simply removed. This method only overrides the return type of the correspondingAbstractQuerymethod.- Specified by:
havingin interfaceAbstractQuery<T>- Specified by:
havingin interfaceCriteriaQuery<T>- Specified by:
havingin interfaceJpaSelectCriteria<T>- Parameters:
restrictions- zero or more restriction predicates- Returns:
- the modified query
-
orderBy
Description copied from interface:CriteriaQuerySpecify the ordering expressions that are used to order the query results. Replaces the previous ordering expressions, if any. If no ordering expressions are specified, the previous ordering, if any, is simply removed, and results will be returned in no particular order. The left-to-right sequence of the ordering expressions determines the precedence, whereby the leftmost has highest precedence.- Specified by:
orderByin interfaceCriteriaQuery<T>- Parameters:
o- zero or more ordering expressions- Returns:
- the modified query
-
orderBy
Description copied from interface:CriteriaQuerySpecify the ordering expressions that are used to order the query results. Replaces the previous ordering expressions, if any. If no ordering expressions are specified, the previous ordering, if any, is simply removed, and results will be returned in no particular order. The order of the ordering expressions in the list determines the precedence, whereby the first element in the list has highest precedence.- Specified by:
orderByin interfaceCriteriaQuery<T>- Parameters:
o- list of zero or more ordering expressions- Returns:
- the modified query
-