Uses of Interface
javax.persistence.criteria.Join
Packages that use Join
-
Uses of Join in javax.persistence.criteria
Subinterfaces of Join in javax.persistence.criteriaModifier and TypeInterfaceDescriptioninterface
CollectionJoin<Z,
E> TheCollectionJoin
interface is the type of the result of joining to a collection over an association or element collection that has been specified as ajava.util.Collection
.interface
ListJoin<Z,
E> TheListJoin
interface is the type of the result of joining to a collection over an association or element collection that has been specified as ajava.util.List
.interface
MapJoin<Z,
K, V> TheMapJoin
interface is the type of the result of joining to a collection over an association or element collection that has been specified as ajava.util.Map
.interface
PluralJoin<Z,
C, E> ThePluralJoin
interface defines functionality that is common to joins to all collection types.interface
SetJoin<Z,
E> TheSetJoin
interface is the type of the result of joining to a collection over an association or element collection that has been specified as ajava.util.Set
.Methods in javax.persistence.criteria that return JoinModifier and TypeMethodDescription<X,
Y> Join<X, Y> Create a subquery join object correlated to a join object of the enclosing query.<X,
Y> Join<X, Y> Create an inner join to the specified attribute.<X,
Y> Join<X, Y> Create a join to the specified attribute using the given join type.From.join
(SingularAttribute<? super X, Y> attribute) Create an inner join to the specified single-valued attribute.From.join
(SingularAttribute<? super X, Y> attribute, JoinType jt) Create a join to the specified single-valued attribute using the given join type.Methods in javax.persistence.criteria that return types with arguments of type JoinModifier and TypeMethodDescriptionSubquery.getCorrelatedJoins()
Return the correlated joins of the subquery.From.getJoins()
Return the joins that have been made from this bound type.Methods in javax.persistence.criteria with parameters of type Join