<X,Y> Fetch<X,Y> |
FetchParent.fetch(java.lang.String attributeName,
JoinType jt) |
Create a fetch join to the specified attribute using
the given join type.
|
<Y> Fetch<X,Y> |
FetchParent.fetch(PluralAttribute<? super X,?,Y> attribute,
JoinType jt) |
Create a fetch join to the specified collection-valued
attribute using the given join type.
|
<Y> Fetch<X,Y> |
FetchParent.fetch(SingularAttribute<? super X,Y> attribute,
JoinType jt) |
Create a fetch join to the specified single-valued attribute
using the given join type.
|
<X,Y> Join<X,Y> |
From.join(java.lang.String attributeName,
JoinType jt) |
Create a join to the specified attribute using the given
join type.
|
<Y> CollectionJoin<X,Y> |
From.join(CollectionAttribute<? super X,Y> collection,
JoinType jt) |
Create a join to the specified Collection-valued attribute
using the given join type.
|
<Y> ListJoin<X,Y> |
From.join(ListAttribute<? super X,Y> list,
JoinType jt) |
Create a join to the specified List-valued attribute using
the given join type.
|
<K,V> MapJoin<X,K,V> |
From.join(MapAttribute<? super X,K,V> map,
JoinType jt) |
Create a join to the specified Map-valued attribute using
the given join type.
|
<Y> SetJoin<X,Y> |
From.join(SetAttribute<? super X,Y> set,
JoinType jt) |
Create a join to the specified Set-valued attribute using
the given join type.
|
<Y> Join<X,Y> |
From.join(SingularAttribute<? super X,Y> attribute,
JoinType jt) |
Create a join to the specified single-valued attribute
using the given join type.
|
<X,Y> CollectionJoin<X,Y> |
From.joinCollection(java.lang.String attributeName,
JoinType jt) |
Create a join to the specified Collection-valued attribute
using the given join type.
|
<X,Y> ListJoin<X,Y> |
From.joinList(java.lang.String attributeName,
JoinType jt) |
Create a join to the specified List-valued attribute using
the given join type.
|
<X,K,V> MapJoin<X,K,V> |
From.joinMap(java.lang.String attributeName,
JoinType jt) |
Create a join to the specified Map-valued attribute using
the given join type.
|
<X,Y> SetJoin<X,Y> |
From.joinSet(java.lang.String attributeName,
JoinType jt) |
Create a join to the specified Set-valued attribute using
the given join type.
|