Uses of Interface
org.hibernate.query.criteria.JpaRoot
-
Packages that use JpaRoot Package Description org.hibernate.query.criteria Support for JPA criteria queries.org.hibernate.query.criteria.spi SPI for extendingHibernateCriteriaBuilder
with additional functionality by registering aService
.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.select Nodes representingselect
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(jakarta.persistence.criteria.Root<Y> parentRoot)
<X> JpaRoot<X>
JpaCriteriaQuery. from(jakarta.persistence.metamodel.EntityType<X> entity)
<X> JpaRoot<X>
JpaCriteriaQuery. from(Class<X> entityClass)
<X> JpaRoot<X>
JpaSelectCriteria. from(jakarta.persistence.metamodel.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<E>
JpaManipulationCriteria. getTarget()
Get the root path that is the target of the DML statement.<X,T extends X>
JpaRoot<T>HibernateCriteriaBuilder. treat(jakarta.persistence.criteria.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 Set<? extends JpaRoot<?>>
JpaQueryStructure. getRoots()
Methods in org.hibernate.query.criteria with parameters of type JpaRoot Modifier and Type Method Description JpaQueryStructure
JpaQueryStructure. addRoot(JpaRoot<?> root)
-
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(jakarta.persistence.criteria.Root<X> root, Class<T> type)
-
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.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)
-