Package org.hibernate.query.criteria
Interface JpaSetJoin<O,T>
-
- All Superinterfaces:
jakarta.persistence.criteria.Expression<T>
,jakarta.persistence.criteria.FetchParent<O,T>
,jakarta.persistence.criteria.From<O,T>
,jakarta.persistence.criteria.Join<O,T>
,JpaCriteriaNode
,JpaExpression<T>
,JpaFetchParent<O,T>
,JpaFrom<O,T>
,JpaJoin<O,T>
,JpaJoinedFrom<O,T>
,JpaPath<T>
,JpaPluralJoin<O,Set<T>,T>
,JpaSelection<T>
,JpaTupleElement<T>
,jakarta.persistence.criteria.Path<T>
,jakarta.persistence.criteria.PluralJoin<O,Set<T>,T>
,jakarta.persistence.criteria.Selection<T>
,Serializable
,jakarta.persistence.criteria.SetJoin<O,T>
,jakarta.persistence.TupleElement<T>
- All Known Implementing Classes:
SqmCorrelatedSetJoin
,SqmSetJoin
,SqmTreatedSetJoin
public interface JpaSetJoin<O,T> extends JpaPluralJoin<O,Set<T>,T>, jakarta.persistence.criteria.SetJoin<O,T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JpaSetJoin<O,T>
on(jakarta.persistence.criteria.Expression<Boolean> restriction)
JpaSetJoin<O,T>
on(jakarta.persistence.criteria.Predicate... restrictions)
JpaSetJoin<O,T>
on(JpaExpression<Boolean> restriction)
JpaSetJoin<O,T>
on(JpaPredicate... restrictions)
<S extends T>
JpaSetJoin<O,S>treatAs(Class<S> treatAsType)
Support for JPA's explicit (TREAT) down-casting.<S extends T>
JpaSetJoin<O,S>treatAs(EntityDomainType<S> treatAsType)
Support for JPA's explicit (TREAT) down-casting.-
Methods inherited from interface jakarta.persistence.criteria.From
getJoins, isCorrelated, join, join, join, join, join, join, join, join, join, join, join, join, joinCollection, joinCollection, joinList, joinList, joinMap, joinMap, joinSet, joinSet
-
Methods inherited from interface org.hibernate.query.criteria.JpaExpression
as, asBigDecimal, asBigInteger, asDouble, asFloat, asInteger, asLong, asString, in, in, in, in, isNotNull, isNull
-
Methods inherited from interface org.hibernate.query.criteria.JpaFetchParent
fetch, fetch, fetch, fetch, fetch, fetch, getFetches
-
Methods inherited from interface org.hibernate.query.criteria.JpaFrom
getCorrelationParent, join, join, join, join, join, join, join, joinLateral, joinLateral
-
Methods inherited from interface org.hibernate.query.criteria.JpaPath
get, get, get, get, getLhs, getNavigablePath, getParentPath, type
-
Methods inherited from interface org.hibernate.query.criteria.JpaPluralJoin
getAttribute
-
Methods inherited from interface org.hibernate.query.criteria.JpaSelection
alias, getCompoundSelectionItems, getSelectionItems
-
Methods inherited from interface org.hibernate.query.criteria.JpaTupleElement
getJavaType, getJavaTypeDescriptor
-
-
-
-
Method Detail
-
on
JpaSetJoin<O,T> on(JpaExpression<Boolean> restriction)
-
on
JpaSetJoin<O,T> on(jakarta.persistence.criteria.Expression<Boolean> restriction)
-
on
JpaSetJoin<O,T> on(JpaPredicate... restrictions)
-
on
JpaSetJoin<O,T> on(jakarta.persistence.criteria.Predicate... restrictions)
-
treatAs
<S extends T> JpaSetJoin<O,S> treatAs(Class<S> treatAsType)
Description copied from interface:JpaPath
Support for JPA's explicit (TREAT) down-casting.
-
treatAs
<S extends T> JpaSetJoin<O,S> treatAs(EntityDomainType<S> treatAsType)
Description copied from interface:JpaPath
Support for JPA's explicit (TREAT) down-casting.
-
-