|
JPA 2.0 API 1.0.1.Final-redhat-2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
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()
Return the join type. |
JoinType |
Fetch.getJoinType()
Return the join type used in the fetch join. |
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 | ||
---|---|---|
|
FetchParent.fetch(PluralAttribute<? super X,?,Y> attribute,
JoinType jt)
Create a fetch join to the specified collection-valued attribute using the given join type. |
|
|
FetchParent.fetch(SingularAttribute<? super X,Y> attribute,
JoinType jt)
Create a fetch join to the specified single-valued attribute using the given join type. |
|
|
FetchParent.fetch(String attributeName,
JoinType jt)
Create a fetch join to the specified attribute using the given join type. |
|
|
From.join(CollectionAttribute<? super X,Y> collection,
JoinType jt)
Create a join to the specified Collection-valued attribute using the given join type. |
|
|
From.join(ListAttribute<? super X,Y> list,
JoinType jt)
Create a join to the specified List-valued attribute using the given join type. |
|
|
From.join(MapAttribute<? super X,K,V> map,
JoinType jt)
Create a join to the specified Map-valued attribute using the given join type. |
|
|
From.join(SetAttribute<? super X,Y> set,
JoinType jt)
Create a join to the specified Set-valued attribute using the given join type. |
|
|
From.join(SingularAttribute<? super X,Y> attribute,
JoinType jt)
Create a join to the specified single-valued attribute using the given join type. |
|
|
From.join(String attributeName,
JoinType jt)
Create a join to the specified attribute using the given join type. |
|
|
From.joinCollection(String attributeName,
JoinType jt)
Create a join to the specified Collection-valued attribute using the given join type. |
|
|
From.joinList(String attributeName,
JoinType jt)
Create a join to the specified List-valued attribute using the given join type. |
|
|
From.joinMap(String attributeName,
JoinType jt)
Create a join to the specified Map-valued attribute using the given join type. |
|
|
From.joinSet(String attributeName,
JoinType jt)
Create a join to the specified Set-valued attribute using the given join type. |
|
JPA 2.0 API 1.0.1.Final-redhat-2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |