Uses of Class
javax.persistence.criteria.JoinType
-
Packages that use JoinType Package Description javax.persistence.criteria -
-
Uses of JoinType in javax.persistence.criteria
Methods in javax.persistence.criteria that return JoinType Modifier and Type Method Description 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 Modifier and Type Method Description <X,Y>
Fetch<X,Y>FetchParent. fetch(java.lang.String attributeName, JoinType jt)
<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>
Join<X,Y>From. join(java.lang.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>
CollectionJoin<X,Y>From. joinCollection(java.lang.String attributeName, JoinType jt)
<X,Y>
ListJoin<X,Y>From. joinList(java.lang.String attributeName, JoinType jt)
<X,K,V>
MapJoin<X,K,V>From. joinMap(java.lang.String attributeName, JoinType jt)
<X,Y>
SetJoin<X,Y>From. joinSet(java.lang.String attributeName, JoinType jt)
-