Uses of Interface
org.hibernate.query.criteria.JpaQueryStructure
Packages that use JpaQueryStructure
Package
Description
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
Nodes representing
select
statements in the SQM tree.-
Uses of JpaQueryStructure in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaQueryStructureModifier and TypeMethodDescriptionCriteriaDefinition.getQuerySpec()
JpaSelectCriteria.getQuerySpec()
The query structure.JpaQueryStructure.setDistinct
(boolean distinct) JpaQueryStructure.setFetch
(JpaExpression<? extends Number> fetch) JpaQueryStructure.setFetch
(JpaExpression<? extends Number> fetch, FetchClauseType fetchClauseType) JpaQueryStructure.setGroupingExpressions
(List<? extends JpaExpression<?>> grouping) JpaQueryStructure.setGroupingExpressions
(JpaExpression<?>... grouping) JpaQueryStructure.setGroupRestriction
(Expression<Boolean> restriction) JpaQueryStructure.setGroupRestriction
(Predicate... restrictions) JpaQueryStructure.setGroupRestriction
(JpaPredicate restrictions) JpaQueryStructure.setOffset
(JpaExpression<? extends Number> offset) JpaQueryStructure.setRestriction
(Expression<Boolean> restriction) JpaQueryStructure.setRestriction
(Predicate... restrictions) JpaQueryStructure.setRestriction
(JpaPredicate restriction) JpaQueryStructure.setSelection
(JpaSelection<T> selection) JpaQueryStructure.setSortSpecifications
(List<? extends JpaOrder> sortSpecifications) -
Uses of JpaQueryStructure in org.hibernate.query.sqm.tree.select
Classes in org.hibernate.query.sqm.tree.select that implement JpaQueryStructureModifier and TypeClassDescriptionclass
SqmQuerySpec<T>
Defines the commonality between a root query and a subquery.