Uses of Class
org.hibernate.query.sqm.tree.SqmJoinType
-
Packages that use SqmJoinType Package Description org.hibernate.metamodel.model.domain.internal Implementation of the SPI for the runtime domain metamodel.org.hibernate.query.criteria The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.org.hibernate.query.derived org.hibernate.query.hql.internal Implementation of the SPIs for HQL support.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.tree This package contains the classes that make up the SQM tree nodes.org.hibernate.query.sqm.tree.domain Nodes representing path expressions in the SQM tree.org.hibernate.query.sqm.tree.from Nodes representing root entities and joins in the SQM tree. -
-
Uses of SqmJoinType in org.hibernate.metamodel.model.domain.internal
Methods in org.hibernate.metamodel.model.domain.internal with parameters of type SqmJoinType Modifier and Type Method Description SqmAttributeJoin<X,E>
BagAttributeImpl. createSqmJoin(SqmFrom<?,X> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
SqmPluralPartJoin<Object,J>
EntitySqmPathSource. createSqmJoin(SqmFrom<?,Object> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
SqmAttributeJoin<X,E>
ListAttributeImpl. createSqmJoin(SqmFrom<?,X> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
SqmAttributeJoin<X,V>
MapAttributeImpl. createSqmJoin(SqmFrom<?,X> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
SqmPluralPartJoin<Object,J>
MappedSuperclassSqmPathSource. createSqmJoin(SqmFrom<?,Object> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
SqmAttributeJoin<X,E>
SetAttributeImpl. createSqmJoin(SqmFrom<?,X> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
SqmAttributeJoin<D,J>
SingularAttributeImpl. createSqmJoin(SqmFrom<?,D> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
-
Uses of SqmJoinType in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria with parameters of type SqmJoinType Modifier and Type Method Description <X> JpaDerivedJoin<X>
JpaFrom. join(Subquery<X> subquery, SqmJoinType joinType)
<X> JpaDerivedJoin<X>
JpaFrom. join(Subquery<X> subquery, SqmJoinType joinType, boolean lateral)
<X> JpaEntityJoin<X>
JpaFrom. join(Class<X> entityJavaType, SqmJoinType joinType)
<X> JpaEntityJoin<X>
JpaFrom. join(EntityDomainType<X> entity, SqmJoinType joinType)
<X> JpaJoinedFrom<?,X>
JpaFrom. join(JpaCteCriteria<X> cte, SqmJoinType joinType)
<X> JpaDerivedJoin<X>
JpaFrom. joinLateral(Subquery<X> subquery, SqmJoinType joinType)
-
Uses of SqmJoinType in org.hibernate.query.derived
Methods in org.hibernate.query.derived with parameters of type SqmJoinType Modifier and Type Method Description SqmJoin<O,J>
AnonymousTupleSqmAssociationPathSource. createSqmJoin(SqmFrom<?,O> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
-
Uses of SqmJoinType in org.hibernate.query.hql.internal
Constructors in org.hibernate.query.hql.internal with parameters of type SqmJoinType Constructor Description QualifiedJoinPathConsumer(SqmFrom<?,?> sqmFrom, SqmJoinType joinType, boolean fetch, String alias, SqmCreationState creationState)
QualifiedJoinPathConsumer(SqmRoot<?> sqmRoot, SqmJoinType joinType, boolean fetch, String alias, SqmCreationState creationState)
-
Uses of SqmJoinType in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm with parameters of type SqmJoinType Modifier and Type Method Description SqmJoin<O,E>
SqmJoinable. createSqmJoin(SqmFrom<?,O> lhs, SqmJoinType joinType, String alias, boolean fetched, SqmCreationState creationState)
-
Uses of SqmJoinType in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type SqmJoinType Modifier and Type Method Description static <T,A>
SqmAttributeJoin<T,A>SqmUtil. findCompatibleFetchJoin(SqmFrom<?,T> sqmFrom, SqmPathSource<A> pathSource, SqmJoinType requestedJoinType)
-
Uses of SqmJoinType in org.hibernate.query.sqm.tree
Methods in org.hibernate.query.sqm.tree that return SqmJoinType Modifier and Type Method Description static SqmJoinType
SqmJoinType. from(JoinType jpaJoinType)
static SqmJoinType
SqmJoinType. valueOf(String name)
Returns the enum constant of this type with the specified name.static SqmJoinType[]
SqmJoinType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of SqmJoinType in org.hibernate.query.sqm.tree.domain
Methods in org.hibernate.query.sqm.tree.domain that return SqmJoinType Modifier and Type Method Description SqmJoinType
AbstractSqmJoin. getSqmJoinType()
Methods in org.hibernate.query.sqm.tree.domain with parameters of type SqmJoinType Modifier and Type Method Description <X> JpaDerivedJoin<X>
AbstractSqmFrom. join(Subquery<X> subquery, SqmJoinType joinType)
<X> JpaDerivedJoin<X>
AbstractSqmFrom. join(Subquery<X> subquery, SqmJoinType joinType, boolean lateral)
<X> JpaDerivedJoin<X>
AbstractSqmFrom. join(Subquery<X> subquery, SqmJoinType joinType, boolean lateral, String alias)
<X> JpaEntityJoin<X>
AbstractSqmFrom. join(Class<X> entityJavaType, SqmJoinType joinType)
<X> JpaEntityJoin<X>
AbstractSqmFrom. join(EntityDomainType<X> entity, SqmJoinType joinType)
<X> JpaJoinedFrom<?,X>
AbstractSqmFrom. join(JpaCteCriteria<X> cte, SqmJoinType joinType)
<X> JpaJoinedFrom<?,X>
AbstractSqmFrom. join(JpaCteCriteria<X> cte, SqmJoinType joinType, String alias)
<X> JpaDerivedJoin<X>
AbstractSqmFrom. joinLateral(Subquery<X> subquery, SqmJoinType joinType)
Constructors in org.hibernate.query.sqm.tree.domain with parameters of type SqmJoinType Constructor Description AbstractSqmAttributeJoin(SqmFrom<?,O> lhs, SqmJoinable joinedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
AbstractSqmAttributeJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, SqmJoinable joinedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
AbstractSqmJoin(NavigablePath navigablePath, SqmPathSource<T> referencedNavigable, SqmFrom<?,?> lhs, String alias, SqmJoinType joinType, NodeBuilder nodeBuilder)
AbstractSqmPluralJoin(SqmFrom<?,O> lhs, PluralPersistentAttribute<O,C,E> joinedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
AbstractSqmPluralJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, PluralPersistentAttribute<O,C,E> joinedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
AbstractSqmQualifiedJoin(NavigablePath navigablePath, SqmPathSource<T> referencedNavigable, SqmFrom<?,?> lhs, String alias, SqmJoinType joinType, NodeBuilder nodeBuilder)
SqmBagJoin(SqmFrom<?,O> lhs, BagPersistentAttribute<O,E> attribute, String alias, SqmJoinType sqmJoinType, boolean fetched, NodeBuilder nodeBuilder)
SqmBagJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, BagPersistentAttribute<O,E> attribute, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
SqmCorrelatedEntityJoin(EntityDomainType<T> joinedEntityDescriptor, String alias, SqmJoinType joinType, SqmRoot<?> sqmRoot, SqmCorrelatedRootJoin<T> correlatedRootJoin, SqmEntityJoin<T> correlationParent)
SqmListJoin(SqmFrom<?,O> lhs, ListPersistentAttribute<O,E> listAttribute, String alias, SqmJoinType sqmJoinType, boolean fetched, NodeBuilder nodeBuilder)
SqmListJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, ListPersistentAttribute<O,E> listAttribute, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
SqmMapJoin(SqmFrom<?,O> lhs, MapPersistentAttribute<O,K,V> pluralValuedNavigable, String alias, SqmJoinType sqmJoinType, boolean fetched, NodeBuilder nodeBuilder)
SqmMapJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, MapPersistentAttribute<O,K,V> pluralValuedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
SqmPluralPartJoin(SqmFrom<?,O> lhs, SqmPathSource<T> joinedNavigable, String alias, SqmJoinType joinType, NodeBuilder nodeBuilder)
SqmPluralPartJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, SqmPathSource<T> joinedNavigable, String alias, SqmJoinType joinType, NodeBuilder nodeBuilder)
SqmSetJoin(SqmFrom<?,O> lhs, SetPersistentAttribute<O,E> pluralValuedNavigable, String alias, SqmJoinType sqmJoinType, boolean fetched, NodeBuilder nodeBuilder)
SqmSetJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, SetPersistentAttribute<O,E> pluralValuedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
SqmSingularJoin(SqmFrom<?,O> lhs, SingularPersistentAttribute<O,T> joinedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
SqmSingularJoin(SqmFrom<?,O> lhs, SqmJoinable joinedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
SqmSingularJoin(SqmFrom<?,O> lhs, NavigablePath navigablePath, SingularPersistentAttribute<O,T> joinedNavigable, String alias, SqmJoinType joinType, boolean fetched, NodeBuilder nodeBuilder)
-
Uses of SqmJoinType in org.hibernate.query.sqm.tree.from
Methods in org.hibernate.query.sqm.tree.from that return SqmJoinType Modifier and Type Method Description SqmJoinType
SqmCrossJoin. getSqmJoinType()
SqmJoinType
SqmJoin. getSqmJoinType()
The type of join - inner, cross, etcConstructors in org.hibernate.query.sqm.tree.from with parameters of type SqmJoinType Constructor Description SqmCteJoin(SqmCteStatement<T> cte, String alias, SqmJoinType joinType, SqmRoot<?> sqmRoot)
SqmCteJoin(NavigablePath navigablePath, SqmCteStatement<T> cte, SqmPathSource<T> pathSource, String alias, SqmJoinType joinType, SqmRoot<?> sqmRoot)
SqmDerivedJoin(SqmSubQuery<T> subQuery, String alias, SqmJoinType joinType, boolean lateral, SqmRoot<?> sqmRoot)
SqmDerivedJoin(NavigablePath navigablePath, SqmSubQuery<T> subQuery, boolean lateral, SqmPathSource<T> pathSource, String alias, SqmJoinType joinType, SqmRoot<?> sqmRoot)
SqmEntityJoin(EntityDomainType<T> joinedEntityDescriptor, String alias, SqmJoinType joinType, SqmRoot<?> sqmRoot)
SqmEntityJoin(NavigablePath navigablePath, EntityDomainType<T> joinedEntityDescriptor, String alias, SqmJoinType joinType, SqmRoot<?> sqmRoot)
-