Package | Description |
---|---|
javax.persistence.criteria |
Modifier and Type | Method and Description |
---|---|
JoinType |
Fetch.getJoinType() |
JoinType |
Join.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.
|
Modifier and Type | Method and Description |
---|---|
<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 © 2016. All rights reserved.