Package | Description |
---|---|
javax.persistence.criteria | |
org.hibernate.ejb.criteria | |
org.hibernate.ejb.criteria.path |
Modifier and Type | Method and Description |
---|---|
<Y> Fetch<X,Y> |
FetchParent.fetch(PluralAttribute<? super X,?,Y> attribute)
Create a fetch join to the specified collection-valued
attribute using an inner join.
|
<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)
Create a fetch join to the specified single-valued attribute
using an inner join.
|
<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> Fetch<X,Y> |
FetchParent.fetch(String attributeName)
Create a fetch join to the specified attribute using an
inner join.
|
<X,Y> Fetch<X,Y> |
FetchParent.fetch(String attributeName,
JoinType jt)
Create a fetch join to the specified attribute using
the given join type.
|
Modifier and Type | Method and Description |
---|---|
Set<Fetch<X,?>> |
FetchParent.getFetches()
Return the fetch joins that have been made from this type.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CollectionJoinImplementor<Z,X>
Specialization of
JoinImplementor for Collection typed attribute joins |
interface |
JoinImplementor<Z,X>
|
interface |
ListJoinImplementor<Z,X>
Specialization of
JoinImplementor for List typed attribute joins |
interface |
MapJoinImplementor<Z,K,V>
Specialization of
JoinImplementor for Map typed attribute joins |
interface |
SetJoinImplementor<Z,X>
Specialization of
JoinImplementor for Set typed attribute joins |
Modifier and Type | Class and Description |
---|---|
class |
AbstractJoinImpl<Z,X>
TODO : javadoc
|
class |
CollectionAttributeJoin<O,E>
TODO : javadoc
|
class |
ListAttributeJoin<O,E>
TODO : javadoc
|
class |
MapAttributeJoin<O,K,V>
TODO : javadoc
|
class |
PluralAttributeJoinSupport<O,C,E>
Support for defining joins to plural attributes (JPA requires typing based on
the specific collection type so we cannot really implement all support in a
single class)
|
class |
SetAttributeJoin<O,E>
TODO : javadoc
|
class |
SingularAttributeJoin<Z,X>
TODO : javadoc
|
Modifier and Type | Method and Description |
---|---|
<Y> Fetch<X,Y> |
AbstractFromImpl.fetch(PluralAttribute<? super X,?,Y> pluralAttribute) |
<Y> Fetch<X,Y> |
AbstractFromImpl.fetch(PluralAttribute<? super X,?,Y> pluralAttribute,
JoinType jt) |
<Y> Fetch<X,Y> |
AbstractFromImpl.fetch(SingularAttribute<? super X,Y> singularAttribute) |
<Y> Fetch<X,Y> |
AbstractFromImpl.fetch(SingularAttribute<? super X,Y> attribute,
JoinType jt) |
<X,Y> Fetch<X,Y> |
AbstractFromImpl.fetch(String attributeName) |
<X,Y> Fetch<X,Y> |
AbstractFromImpl.fetch(String attributeName,
JoinType jt) |
Modifier and Type | Method and Description |
---|---|
Set<Fetch<X,?>> |
AbstractFromImpl.getFetches() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractFromImpl.JoinScope.addFetch(Fetch<X,?> fetch) |
void |
AbstractFromImpl.BasicJoinScope.addFetch(Fetch<X,?> fetch) |
void |
AbstractFromImpl.CorrelationJoinScope.addFetch(Fetch<X,?> fetch) |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.