Uses of Interface
org.hibernate.query.criteria.JpaSelectCriteria
-
Packages that use JpaSelectCriteria Package Description org.hibernate.query.criteria The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.org.hibernate.query.sqm.tree.select Nodes representingselect
statements in the SQM tree. -
-
Uses of JpaSelectCriteria in org.hibernate.query.criteria
Subinterfaces of JpaSelectCriteria in org.hibernate.query.criteria Modifier and Type Interface Description interface
JpaCriteriaQuery<T>
Extension of the JPACriteriaQuery
interface
JpaSubQuery<T>
Classes in org.hibernate.query.criteria that implement JpaSelectCriteria Modifier and Type Class Description class
CriteriaDefinition<R>
A utility class that makes it easier to build criteria queries.Methods in org.hibernate.query.criteria that return JpaSelectCriteria Modifier and Type Method Description JpaSelectCriteria<T>
JpaSelectCriteria. distinct(boolean distinct)
JpaSelectCriteria<?>
JpaCteCriteria. getCteDefinition()
The definition of the CTE.JpaSelectCriteria<T>
JpaSelectCriteria. groupBy(Expression<?>... grouping)
JpaSelectCriteria<T>
JpaSelectCriteria. groupBy(List<Expression<?>> grouping)
JpaSelectCriteria<T>
JpaSelectCriteria. having(Expression<Boolean> restriction)
JpaSelectCriteria<T>
JpaSelectCriteria. having(Predicate... restrictions)
JpaSelectCriteria<T>
JpaSelectCriteria. where(Expression<Boolean> restriction)
JpaSelectCriteria<T>
JpaSelectCriteria. where(Predicate... restrictions)
-
Uses of JpaSelectCriteria in org.hibernate.query.sqm.tree.select
Subinterfaces of JpaSelectCriteria in org.hibernate.query.sqm.tree.select Modifier and Type Interface Description interface
SqmSelectQuery<T>
Classes in org.hibernate.query.sqm.tree.select that implement JpaSelectCriteria Modifier and Type Class Description class
AbstractSqmSelectQuery<T>
class
SqmSelectStatement<T>
class
SqmSubQuery<T>
-