Package org.hibernate.query.criteria
Interface JpaMapJoin<O,K,V>
-
- All Superinterfaces:
Expression<V>,FetchParent<O,V>,From<O,V>,Join<O,V>,JpaCriteriaNode,JpaExpression<V>,JpaFetchParent<O,V>,JpaFrom<O,V>,JpaJoin<O,V>,JpaJoinedFrom<O,V>,JpaPath<V>,JpaPluralJoin<O,Map<K,V>,V>,JpaSelection<V>,JpaTupleElement<V>,MapJoin<O,K,V>,Path<V>,PluralJoin<O,Map<K,V>,V>,Selection<V>,Serializable,TupleElement<V>
- All Known Implementing Classes:
SqmCorrelatedMapJoin,SqmMapJoin,SqmTreatedMapJoin
public interface JpaMapJoin<O,K,V> extends JpaPluralJoin<O,Map<K,V>,V>, MapJoin<O,K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JpaMapJoin<O,K,V>on(Expression<Boolean> restriction)JpaMapJoin<O,K,V>on(Predicate... restrictions)JpaMapJoin<O,K,V>on(JpaExpression<Boolean> restriction)JpaMapJoin<O,K,V>on(JpaPredicate... restrictions)<S extends V>
JpaMapJoin<O,K,S>treatAs(Class<S> treatAsType)Support for JPA's explicit (TREAT) down-casting.<S extends V>
JpaMapJoin<O,K,S>treatAs(EntityDomainType<S> treatJavaType)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 jakarta.persistence.criteria.Join
getJoinType, getOn, getParent
-
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
-
Methods inherited from interface jakarta.persistence.criteria.Selection
isCompoundSelection
-
Methods inherited from interface jakarta.persistence.TupleElement
getAlias
-
-
-
-
Method Detail
-
on
JpaMapJoin<O,K,V> on(JpaExpression<Boolean> restriction)
-
on
JpaMapJoin<O,K,V> on(Expression<Boolean> restriction)
-
on
JpaMapJoin<O,K,V> on(JpaPredicate... restrictions)
-
on
JpaMapJoin<O,K,V> on(Predicate... restrictions)
-
treatAs
<S extends V> JpaMapJoin<O,K,S> treatAs(Class<S> treatAsType)
Description copied from interface:JpaPathSupport for JPA's explicit (TREAT) down-casting.
-
treatAs
<S extends V> JpaMapJoin<O,K,S> treatAs(EntityDomainType<S> treatJavaType)
Description copied from interface:JpaPathSupport for JPA's explicit (TREAT) down-casting.
-
-