Uses of Interface
javax.persistence.criteria.Join

Packages that use Join
javax.persistence.criteria   
 

Uses of Join in javax.persistence.criteria
 

Subinterfaces of Join in javax.persistence.criteria
 interface CollectionJoin<Z,E>
          A join to an entity.
 interface ListJoin<Z,E>
          A join to an entity.
 interface MapJoin<Z,K,V>
          A join to an entity.
 interface PluralJoin<Z,C,E>
          A common join interface to all collection types.
 interface SetJoin<Z,E>
          A join to an entity.
 

Methods in javax.persistence.criteria that return Join
<X,Y> Join<X,Y>
Subquery.correlate(Join<X,Y> parentJoin)
           
<Y> Join<X,Y>
From.join(SingularAttribute<? super X,Y> attribute)
           
<Y> Join<X,Y>
From.join(SingularAttribute<? super X,Y> attribute, JoinType joinType)
           
<X,Y> Join<X,Y>
From.join(java.lang.String attributeName)
           
<X,Y> Join<X,Y>
From.join(java.lang.String attributeName, JoinType joinType)
           
 

Methods in javax.persistence.criteria that return types with arguments of type Join
 java.util.Set<Join<?,?>> Subquery.getCorrelatedJoins()
           
 java.util.Set<Join<X,?>> From.getJoins()
           
 

Methods in javax.persistence.criteria with parameters of type Join
<X,Y> Join<X,Y>
Subquery.correlate(Join<X,Y> parentJoin)