Package org.hibernate.query.criteria
Interface JpaPluralJoin<O,C,E>
- All Superinterfaces:
Expression<E>,FetchParent<O,,E> From<O,,E> Join<O,,E> JpaCriteriaNode,JpaExpression<E>,JpaFetchParent<O,,E> JpaFrom<O,,E> JpaJoin<O,,E> JpaJoinedFrom<O,,E> JpaPath<E>,JpaSelection<E>,JpaTupleElement<E>,Path<E>,PluralJoin<O,,C, E> Selection<E>,Serializable,TupleElement<E>
- All Known Subinterfaces:
JpaCollectionJoin<O,,T> JpaListJoin<O,,T> JpaMapJoin<O,,K, V> JpaSetJoin<O,T>
- All Known Implementing Classes:
SqmBagJoin,SqmCorrelatedBagJoin,SqmCorrelatedListJoin,SqmCorrelatedMapJoin,SqmCorrelatedSetJoin,SqmListJoin,SqmMapJoin,SqmSetJoin,SqmTreatedBagJoin,SqmTreatedListJoin,SqmTreatedMapJoin,SqmTreatedSetJoin
- Author:
- Steve Ebersole
-
Method Summary
Modifier and TypeMethodDescriptionPluralPersistentAttribute<? super O,C, E> Return the metamodel attribute corresponding to the join.JpaPluralJoin<O,? extends C, E> on(Expression<Boolean> restriction) Modify the join to restrict the result according to the specified ON condition and return the join object.JpaPluralJoin<O,? extends C, E> Modify the join to restrict the result according to the specified ON condition and return the join object.JpaPluralJoin<O,? extends C, E> on(JpaExpression<Boolean> restriction) JpaPluralJoin<O,? extends C, E> on(JpaPredicate... restrictions) <S extends E>
JpaPluralJoin<O,?, S> Support for JPA's explicit (TREAT) down-casting.<S extends E>
JpaPluralJoin<O,?, S> treatAs(EntityDomainType<S> treatAsType) Support for JPA's explicit (TREAT) down-casting.Methods inherited from interface jakarta.persistence.criteria.From
getJoins, isCorrelatedMethods inherited from interface jakarta.persistence.criteria.Join
getJoinType, getOn, getParentMethods inherited from interface org.hibernate.query.criteria.JpaExpression
as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, cast, equalTo, equalTo, in, in, in, in, isNotNull, isNullMethods inherited from interface org.hibernate.query.criteria.JpaFetchParent
fetch, fetch, fetch, fetch, fetch, fetch, getFetchesMethods inherited from interface org.hibernate.query.criteria.JpaFrom
crossJoin, crossJoin, getCorrelationParent, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, joinCollection, joinCollection, joinLateral, joinLateral, joinList, joinList, joinMap, joinMap, joinSet, joinSetMethods inherited from interface org.hibernate.query.criteria.JpaJoinedFrom
getOnMethods inherited from interface org.hibernate.query.criteria.JpaPath
get, get, get, get, getLhs, getNavigablePath, getParentPath, typeMethods inherited from interface org.hibernate.query.criteria.JpaSelection
alias, getCompoundSelectionItems, getSelectionItemsMethods inherited from interface org.hibernate.query.criteria.JpaTupleElement
getJavaType, getJavaTypeDescriptor, getJavaTypeName, isEnumMethods inherited from interface jakarta.persistence.criteria.PluralJoin
getModelMethods inherited from interface jakarta.persistence.criteria.Selection
isCompoundSelectionMethods inherited from interface jakarta.persistence.TupleElement
getAlias
-
Method Details
-
getAttribute
PluralPersistentAttribute<? super O,C, getAttribute()E> Description copied from interface:JoinReturn the metamodel attribute corresponding to the join.- Specified by:
getAttributein interfaceJoin<O,C> - Specified by:
getAttributein interfaceJpaJoin<O,C> - Returns:
- metamodel attribute corresponding to the join
-
on
-
on
Description copied from interface:JoinModify the join to restrict the result according to the specified ON condition and return the join object. Replaces the previous ON condition, if any. -
on
-
on
Description copied from interface:JoinModify the join to restrict the result according to the specified ON condition and return the join object. Replaces the previous ON condition, if any. -
treatAs
Description copied from interface:JpaPathSupport for JPA's explicit (TREAT) down-casting. -
treatAs
Description copied from interface:JpaPathSupport for JPA's explicit (TREAT) down-casting.
-