javax.persistence.criteria
Interface FetchParent<Z,X>
- All Known Subinterfaces:
- CollectionJoin<Z,E>, Fetch<Z,X>, From<Z,X>, Join<Z,X>, ListJoin<Z,E>, MapJoin<Z,K,V>, PluralJoin<Z,C,E>, Root<X>, SetJoin<Z,E>
public interface FetchParent<Z,X>
An element of a FROM clause which can function as the parent of fetches.
- Since:
- JPA 2.0
Method Summary |
|
fetch(PluralAttribute<? super X,?,Y> attribute)
|
|
fetch(PluralAttribute<? super X,?,Y> attribute,
JoinType joinType)
|
|
fetch(SingularAttribute<? super X,Y> attribute)
|
|
fetch(SingularAttribute<? super X,Y> attribute,
JoinType joinType)
|
|
fetch(java.lang.String attributeName)
|
|
fetch(java.lang.String attributeName,
JoinType joinType)
|
java.util.Set<Fetch<X,?>> |
getFetches()
|
getFetches
java.util.Set<Fetch<X,?>> getFetches()
fetch
<Y> Fetch<X,Y> fetch(SingularAttribute<? super X,Y> attribute)
fetch
<Y> Fetch<X,Y> fetch(SingularAttribute<? super X,Y> attribute,
JoinType joinType)
fetch
<Y> Fetch<X,Y> fetch(PluralAttribute<? super X,?,Y> attribute)
fetch
<Y> Fetch<X,Y> fetch(PluralAttribute<? super X,?,Y> attribute,
JoinType joinType)
fetch
<X,Y> Fetch<X,Y> fetch(java.lang.String attributeName)
fetch
<X,Y> Fetch<X,Y> fetch(java.lang.String attributeName,
JoinType joinType)