Uses of Interface
org.hibernate.query.criteria.JpaRoot
-
Packages that use JpaRoot 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.criteria.spi SPI for extendingHibernateCriteriaBuilder
with additional functionality by registering aService
.org.hibernate.query.sqm.tree This package contains the classes that make up the SQM tree nodes.org.hibernate.query.sqm.tree.domain Nodes representing path expressions in the SQM tree.org.hibernate.query.sqm.tree.from Nodes representing root entities and joins in the SQM tree.org.hibernate.query.sqm.tree.insert Nodes representinginsert
statements in the SQM tree.org.hibernate.query.sqm.tree.select Nodes representingselect
statements in the SQM tree.org.hibernate.query.sqm.tree.update Nodes representingupdate
statements in the SQM tree. -
-
Uses of JpaRoot in org.hibernate.query.criteria
Subinterfaces of JpaRoot in org.hibernate.query.criteria Modifier and Type Interface Description interface
JpaDerivedRoot<T>
Methods in org.hibernate.query.criteria that return JpaRoot Modifier and Type Method Description <Y> JpaRoot<Y>
JpaSubQuery. correlate(Root<Y> parentRoot)
<X> JpaRoot<X>
CriteriaDefinition. from(EntityType<X> entity)
<X> JpaRoot<X>
CriteriaDefinition. from(Class<X> entityClass)
<X> JpaRoot<X>
CriteriaDefinition. from(JpaCteCriteria<X> cte)
JpaRoot<T>
JpaCriteriaDelete. from(EntityType<T> entity)
JpaRoot<T>
JpaCriteriaDelete. from(Class<T> entityClass)
<X> JpaRoot<X>
JpaCriteriaQuery. from(EntityType<X> entity)
<X> JpaRoot<X>
JpaCriteriaQuery. from(Class<X> entityClass)
JpaRoot<T>
JpaCriteriaUpdate. from(EntityType<T> entity)
JpaRoot<T>
JpaCriteriaUpdate. from(Class<T> entityClass)
<X> JpaRoot<X>
JpaSelectCriteria. from(EntityType<X> entity)
<X> JpaRoot<X>
JpaSelectCriteria. from(Class<X> entityClass)
<X> JpaRoot<X>
JpaSelectCriteria. from(JpaCteCriteria<X> cte)
Create and add a query root corresponding to the given cte, forming a cartesian product with any existing roots.JpaRoot<T>
JpaConflictClause. getExcludedRoot()
The excluded row/object which was not inserted.JpaRoot<T>
JpaCriteriaDelete. getRoot()
JpaRoot<T>
JpaCriteriaUpdate. getRoot()
JpaRoot<E>
JpaManipulationCriteria. getTarget()
Get the root path that is the target of the DML statement.<X,T extends X>
JpaRoot<T>HibernateCriteriaBuilder. treat(Root<X> root, Class<T> type)
Methods in org.hibernate.query.criteria that return types with arguments of type JpaRoot Modifier and Type Method Description List<? extends JpaRoot<?>>
JpaQueryStructure. getRootList()
Set<? extends JpaRoot<?>>
JpaQueryStructure. getRoots()
Methods in org.hibernate.query.criteria with parameters of type JpaRoot Modifier and Type Method Description JpaQueryStructure<T>
JpaQueryStructure. addRoot(JpaRoot<?> root)
void
JpaManipulationCriteria. setTarget(JpaRoot<E> root)
Set the root path -
Uses of JpaRoot in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaRoot Modifier and Type Method Description <X,T extends X>
JpaRoot<T>HibernateCriteriaBuilderDelegate. treat(Root<X> root, Class<T> type)
-
Uses of JpaRoot in org.hibernate.query.sqm.tree
Methods in org.hibernate.query.sqm.tree with parameters of type JpaRoot Modifier and Type Method Description void
AbstractSqmDmlStatement. setTarget(JpaRoot<E> root)
void
SqmDmlStatement. setTarget(JpaRoot<E> root)
Set the root path -
Uses of JpaRoot in org.hibernate.query.sqm.tree.domain
Classes in org.hibernate.query.sqm.tree.domain that implement JpaRoot Modifier and Type Class Description class
SqmCorrelatedRoot<T>
class
SqmCorrelatedRootJoin<T>
class
SqmCteRoot<T>
class
SqmDerivedRoot<T>
class
SqmTreatedRoot<T,S extends T>
-
Uses of JpaRoot in org.hibernate.query.sqm.tree.from
Classes in org.hibernate.query.sqm.tree.from that implement JpaRoot Modifier and Type Class Description class
SqmRoot<E>
-
Uses of JpaRoot in org.hibernate.query.sqm.tree.insert
Methods in org.hibernate.query.sqm.tree.insert with parameters of type JpaRoot Modifier and Type Method Description void
AbstractSqmInsertStatement. setTarget(JpaRoot<T> root)
-
Uses of JpaRoot in org.hibernate.query.sqm.tree.select
Methods in org.hibernate.query.sqm.tree.select that return JpaRoot Modifier and Type Method Description <X> JpaRoot<X>
AbstractSqmSelectQuery. from(JpaCteCriteria<X> cte)
Methods in org.hibernate.query.sqm.tree.select with parameters of type JpaRoot Modifier and Type Method Description SqmQuerySpec<T>
SqmQuerySpec. addRoot(JpaRoot<?> root)
-
Uses of JpaRoot in org.hibernate.query.sqm.tree.update
Methods in org.hibernate.query.sqm.tree.update with parameters of type JpaRoot Modifier and Type Method Description void
SqmUpdateStatement. setTarget(JpaRoot<T> root)
-