Uses of Interface
org.hibernate.query.criteria.JpaListJoin
-
Packages that use JpaListJoin 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.domain Nodes representing path expressions in the SQM tree. -
-
Uses of JpaListJoin in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaListJoin Modifier and Type Method Description <X,Y>
JpaListJoin<X,Y>JpaSubQuery. correlate(ListJoin<X,Y> parentList)
<Y> JpaListJoin<T,Y>
JpaFrom. join(ListAttribute<? super T,Y> list)
<Y> JpaListJoin<T,Y>
JpaFrom. join(ListAttribute<? super T,Y> list, JoinType jt)
<X,Y>
JpaListJoin<X,Y>JpaFrom. joinList(String attributeName)
<X,Y>
JpaListJoin<X,Y>JpaFrom. joinList(String attributeName, JoinType jt)
JpaListJoin<O,T>
JpaListJoin. on(Expression<Boolean> restriction)
JpaListJoin<O,T>
JpaListJoin. on(Predicate... restrictions)
JpaListJoin<O,T>
JpaListJoin. on(JpaExpression<Boolean> restriction)
JpaListJoin<O,T>
JpaListJoin. on(JpaPredicate... restrictions)
<X,T,E extends T>
JpaListJoin<X,E>HibernateCriteriaBuilder. treat(ListJoin<X,T> join, Class<E> type)
<S extends T>
JpaListJoin<O,S>JpaListJoin. treatAs(Class<S> treatAsType)
<S extends T>
JpaListJoin<O,S>JpaListJoin. treatAs(EntityDomainType<S> treatAsType)
-
Uses of JpaListJoin in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaListJoin Modifier and Type Method Description <X,T,E extends T>
JpaListJoin<X,E>HibernateCriteriaBuilderDelegate. treat(ListJoin<X,T> join, Class<E> type)
-
Uses of JpaListJoin in org.hibernate.query.sqm.tree.domain
Classes in org.hibernate.query.sqm.tree.domain that implement JpaListJoin Modifier and Type Class Description class
SqmCorrelatedListJoin<O,T>
class
SqmListJoin<O,E>
class
SqmTreatedListJoin<O,T,S extends T>
-