Package org.hibernate.query.criteria
Interface JpaMapJoin<O,K,V>
-
- All Superinterfaces:
jakarta.persistence.criteria.Expression<V>,jakarta.persistence.criteria.FetchParent<O,V>,jakarta.persistence.criteria.From<O,V>,jakarta.persistence.criteria.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>,jakarta.persistence.criteria.MapJoin<O,K,V>,jakarta.persistence.criteria.Path<V>,jakarta.persistence.criteria.PluralJoin<O,Map<K,V>,V>,jakarta.persistence.criteria.Selection<V>,Serializable,jakarta.persistence.TupleElement<V>
- All Known Implementing Classes:
SqmCorrelatedMapJoin,SqmMapJoin,SqmTreatedMapJoin
public interface JpaMapJoin<O,K,V> extends JpaPluralJoin<O,Map<K,V>,V>, jakarta.persistence.criteria.MapJoin<O,K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JpaMapJoin<O,K,V>on(jakarta.persistence.criteria.Expression<Boolean> restriction)JpaMapJoin<O,K,V>on(jakarta.persistence.criteria.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 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
JpaMapJoin<O,K,V> on(JpaExpression<Boolean> restriction)
-
on
JpaMapJoin<O,K,V> on(jakarta.persistence.criteria.Expression<Boolean> restriction)
-
on
JpaMapJoin<O,K,V> on(JpaPredicate... restrictions)
-
on
JpaMapJoin<O,K,V> on(jakarta.persistence.criteria.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.
-
-