Uses of Interface
org.hibernate.query.criteria.JpaPath
-
Packages that use JpaPath Package Description org.hibernate.metamodel.model.domain Defines the runtime domain metamodel, which describes the Java aspect of the application's domain model parts (entities, attributes).org.hibernate.metamodel.model.domain.internal Implementation of the SPI for the runtime domain metamodel.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.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. -
-
Uses of JpaPath in org.hibernate.metamodel.model.domain
Subinterfaces of JpaPath in org.hibernate.metamodel.model.domain Modifier and Type Interface Description interface
DiscriminatorSqmPath<T>
Commonality between entity and any discriminators -
Uses of JpaPath in org.hibernate.metamodel.model.domain.internal
Classes in org.hibernate.metamodel.model.domain.internal that implement JpaPath Modifier and Type Class Description class
AnyDiscriminatorSqmPath<T>
class
EmbeddedDiscriminatorSqmPath<T>
SqmPath
specialization for an embeddable discriminatorclass
EntityDiscriminatorSqmPath<T>
SqmPath
specialization for an entity discriminator -
Uses of JpaPath in org.hibernate.query.criteria
Subinterfaces of JpaPath in org.hibernate.query.criteria Modifier and Type Interface Description interface
JpaCollectionJoin<O,T>
Specialization ofJpaJoin
forCollection
typed attribute joinsinterface
JpaCrossJoin<T>
interface
JpaDerivedFrom<T>
interface
JpaDerivedJoin<T>
interface
JpaDerivedRoot<T>
interface
JpaEntityJoin<T>
interface
JpaFrom<O,T>
API extension to the JPAFrom
contractinterface
JpaJoin<O,T>
interface
JpaJoinedFrom<O,T>
Exists within the hierarchy mainly to support "entity joins".interface
JpaListJoin<O,T>
interface
JpaMapJoin<O,K,V>
interface
JpaPluralJoin<O,C,E>
interface
JpaRoot<T>
interface
JpaSetJoin<O,T>
Methods in org.hibernate.query.criteria that return JpaPath Modifier and Type Method Description <Y> JpaPath<Y>
JpaPath. get(SingularAttribute<? super T,Y> attribute)
<Y> JpaPath<Y>
JpaPath. get(String attributeName)
JpaPath<?>
JpaPath. getLhs()
The source (think "left hand side") of this pathdefault JpaPath<?>
JpaPath. getParentPath()
<X,T extends X>
JpaPath<T>HibernateCriteriaBuilder. treat(Path<X> path, Class<T> type)
<S extends T>
JpaPath<S>JpaPath. treatAs(Class<S> treatJavaType)
Support for JPA's explicit (TREAT) down-casting.<S extends T>
JpaPath<S>JpaPath. treatAs(EntityDomainType<S> treatJavaType)
Support for JPA's explicit (TREAT) down-casting.Methods in org.hibernate.query.criteria that return types with arguments of type JpaPath Modifier and Type Method Description List<? extends JpaPath<?>>
JpaConflictClause. getConstraintPaths()
The paths which are part of a unique constraint, for which a constraint violation is allowed.List<? extends JpaPath<?>>
JpaCriteriaInsert. getInsertionTargetPaths()
Returns the insertion target paths. -
Uses of JpaPath in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaPath Modifier and Type Method Description <X,T extends X>
JpaPath<T>HibernateCriteriaBuilderDelegate. treat(Path<X> path, Class<T> type)
-
Uses of JpaPath in org.hibernate.query.sqm.tree.domain
Subinterfaces of JpaPath in org.hibernate.query.sqm.tree.domain Modifier and Type Interface Description interface
SqmCorrelation<O,T>
Specialization ofSqmFrom
for sub-query correlationsinterface
SqmPath<T>
Models a reference to a part of the application's domain model as part of an SQM tree.interface
SqmPathWrapper<W,T>
SqmPath specialization for an SqmPath that wraps another SqmPathinterface
SqmSimplePath<T>
interface
SqmTreatedPath<T,S extends T>
Methods in org.hibernate.query.sqm.tree.domain that return JpaPath Modifier and Type Method Description JpaPath<?>
AbstractSqmFrom. getParentPath()
-
Uses of JpaPath in org.hibernate.query.sqm.tree.from
Subinterfaces of JpaPath in org.hibernate.query.sqm.tree.from Modifier and Type Interface Description interface
SqmAttributeJoin<O,T>
Models a join based on a mapped attribute reference.interface
SqmFrom<O,T>
Models a Bindable's inclusion in theFROM
clause.interface
SqmJoin<O,T>
interface
SqmQualifiedJoin<O,T>
Common contract for qualified/restricted/predicated joins.Classes in org.hibernate.query.sqm.tree.from that implement JpaPath Modifier and Type Class Description class
SqmCrossJoin<T>
class
SqmCteJoin<T>
class
SqmDerivedJoin<T>
class
SqmEntityJoin<T>
class
SqmRoot<E>
-