Uses of Class
javax.persistence.criteria.JoinType

Packages that use JoinType
javax.persistence.criteria   
 

Uses of JoinType in javax.persistence.criteria
 

Methods in javax.persistence.criteria that return JoinType
 JoinType Fetch.getJoinType()
           
 JoinType Join.getJoinType()
           
static JoinType JoinType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JoinType[] JoinType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in javax.persistence.criteria with parameters of type JoinType
<Y> Fetch<X,Y>
FetchParent.fetch(PluralAttribute<? super X,?,Y> attribute, JoinType joinType)
           
<Y> Fetch<X,Y>
FetchParent.fetch(SingularAttribute<? super X,Y> attribute, JoinType joinType)
           
<X,Y> Fetch<X,Y>
FetchParent.fetch(java.lang.String attributeName, JoinType joinType)
           
<Y> CollectionJoin<X,Y>
From.join(CollectionAttribute<? super X,Y> collection, JoinType joinType)
           
<Y> ListJoin<X,Y>
From.join(ListAttribute<? super X,Y> list, JoinType joinType)
           
<K,V> MapJoin<X,K,V>
From.join(MapAttribute<? super X,K,V> map, JoinType joinType)
           
<Y> SetJoin<X,Y>
From.join(SetAttribute<? super X,Y> set, JoinType joinType)
           
<Y> Join<X,Y>
From.join(SingularAttribute<? super X,Y> attribute, JoinType joinType)
           
<X,Y> Join<X,Y>
From.join(java.lang.String attributeName, JoinType joinType)
           
<X,Y> CollectionJoin<X,Y>
From.joinCollection(java.lang.String attributeName, JoinType joinType)
           
<X,Y> ListJoin<X,Y>
From.joinList(java.lang.String attributeName, JoinType joinType)
           
<X,K,V> MapJoin<X,K,V>
From.joinMap(java.lang.String attributeName, JoinType joinType)
           
<X,Y> SetJoin<X,Y>
From.joinSet(java.lang.String attributeName, JoinType joinType)