Uses of Interface
javax.persistence.criteria.AbstractQuery
Packages that use AbstractQuery
-
Uses of AbstractQuery in javax.persistence.criteria
Subinterfaces of AbstractQuery in javax.persistence.criteriaModifier and TypeInterfaceDescriptioninterface
TheCriteriaQuery
interface defines functionality that is specific to top-level queries.interface
Subquery<T>
TheSubquery
interface defines functionality that is specific to subqueries.Methods in javax.persistence.criteria that return AbstractQueryModifier and TypeMethodDescriptionAbstractQuery.distinct
(boolean distinct) Specify whether duplicate query results will be eliminated.Subquery.getParent()
Return the query of which this is a subquery.AbstractQuery.groupBy
(List<Expression<?>> grouping) Specify the expressions that are used to form groups over the query results.AbstractQuery.groupBy
(Expression<?>... grouping) Specify the expressions that are used to form groups over the query results.AbstractQuery.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.AbstractQuery.where
(Expression<Boolean> restriction) Modify the query to restrict the query results according to the specified boolean expression.Modify the query to restrict the query results according to the conjunction of the specified restriction predicates.