Uses of Interface
org.hibernate.query.criteria.JpaJoin
Packages that use JpaJoin
Package
Description
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
SPI for extending
HibernateCriteriaBuilder
with additional functionality by registering a Service.Nodes representing path expressions in the SQM tree.
Nodes representing root entities and joins in the SQM tree.
-
Uses of JpaJoin in org.hibernate.query.criteria
Subinterfaces of JpaJoin in org.hibernate.query.criteriaModifier and TypeInterfaceDescriptioninterfaceJpaCollectionJoin<O,T> Specialization ofJpaJoinforCollectiontyped attribute joinsinterfaceJpaListJoin<O,T> interfaceJpaMapJoin<O,K, V> interfaceJpaPluralJoin<O,C, E> interfaceJpaSetJoin<O,T> Methods in org.hibernate.query.criteria that return JpaJoinModifier and TypeMethodDescription<X,Y> JpaJoin<X, Y> JpaFrom.join(SingularAttribute<? super T, Y> attribute) JpaFrom.join(SingularAttribute<? super T, Y> attribute, JoinType jt) <X,Y> JpaJoin<X, Y> <X,Y> JpaJoin<X, Y> JpaFetch.on(JpaExpression<Boolean> restriction) Add a restriction to the fetch.JpaFetch.on(JpaPredicate... restrictions) Add a restriction to the fetch.JpaJoin.on(Expression<Boolean> restriction) JpaJoin.on(JpaExpression<Boolean> restriction) JpaJoin.on(JpaPredicate... restrictions) <X,T, V extends T>
JpaJoin<X,V> JpaJoin.treatAs(EntityDomainType<S> treatAsType) -
Uses of JpaJoin in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaJoin -
Uses of JpaJoin in org.hibernate.query.sqm.tree.domain
Classes in org.hibernate.query.sqm.tree.domain that implement JpaJoinModifier and TypeClassDescriptionclassModels a join based on a mapped attribute reference.classAbstractSqmPluralJoin<O,C, E> classSqmBagJoin<O,E> classSqmCorrelatedBagJoin<O,T> classclassSqmCorrelatedMapJoin<O,K, V> classSqmCorrelatedSetJoin<O,T> classclassSqmListJoin<O,E> classSqmMapJoin<O,K, V> classSqmSetJoin<O,E> classSqmSingularJoin<O,T> classSqmTreatedBagJoin<O,T, S extends T> classSqmTreatedListJoin<O,T, S extends T> classSqmTreatedMapJoin<O,K, V, S extends V> classSqmTreatedSetJoin<O,T, S extends T> classSqmTreatedSingularJoin<O,T, S extends T> -
Uses of JpaJoin in org.hibernate.query.sqm.tree.from
Subinterfaces of JpaJoin in org.hibernate.query.sqm.tree.fromModifier and TypeInterfaceDescriptioninterfaceSqmAttributeJoin<O,T> Models a join based on a mapped attribute reference.