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 Join.getJoinType()
           
 JoinType Fetch.getJoinType()
           
static JoinType JoinType.valueOf(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 jt)
           
<Y> Fetch<X,Y>
FetchParent.fetch(SingularAttribute<? super X,Y> attribute, JoinType jt)
           
<X,Y> Fetch<X,Y>
FetchParent.fetch(String attributeName, JoinType jt)
           
<Y> CollectionJoin<X,Y>
From.join(CollectionAttribute<? super X,Y> collection, JoinType jt)
           
<Y> ListJoin<X,Y>
From.join(ListAttribute<? super X,Y> list, JoinType jt)
           
<K,V> MapJoin<X,K,V>
From.join(MapAttribute<? super X,K,V> map, JoinType jt)
           
<Y> SetJoin<X,Y>
From.join(SetAttribute<? super X,Y> set, JoinType jt)
           
<Y> Join<X,Y>
From.join(SingularAttribute<? super X,Y> attribute, JoinType jt)
           
<X,Y> Join<X,Y>
From.join(String attributeName, JoinType jt)
           
<X,Y> CollectionJoin<X,Y>
From.joinCollection(String attributeName, JoinType jt)
           
<X,Y> ListJoin<X,Y>
From.joinList(String attributeName, JoinType jt)
           
<X,K,V> MapJoin<X,K,V>
From.joinMap(String attributeName, JoinType jt)
           
<X,Y> SetJoin<X,Y>
From.joinSet(String attributeName, JoinType jt)
           
 



Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.