Uses of Class
jakarta.persistence.criteria.JoinType
-
Packages that use JoinType Package Description jakarta.persistence.criteria Jakarta Persistence Criteria APIorg.hibernate.envers.internal.tools.query org.hibernate.envers.query org.hibernate.envers.query.internal.impl -
-
Uses of JoinType in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return JoinType Modifier and Type Method Description JoinTypeFetch. getJoinType()Return the join type used in the fetch join.JoinTypeJoin. getJoinType()Return the join type.static JoinTypeJoinType. valueOf(String name)Returns the enum constant of this type with the specified name.static JoinType[]JoinType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in jakarta.persistence.criteria with parameters of type JoinType Modifier and Type Method Description <Y> Fetch<X,Y>FetchParent. fetch(PluralAttribute<? super X,?,Y> attribute, JoinType jt)Create a fetch join to the specified collection-valued attribute using the given join type.<Y> Fetch<X,Y>FetchParent. fetch(SingularAttribute<? super X,Y> attribute, JoinType jt)Create a fetch join to the specified single-valued attribute using the given join type.<X,Y>
Fetch<X,Y>FetchParent. fetch(String attributeName, JoinType jt)Create a fetch join to the specified attribute using the given join type.<Y> CollectionJoin<X,Y>From. join(CollectionAttribute<? super X,Y> collection, JoinType jt)Create a join to the specified Collection-valued attribute using the given join type.<Y> ListJoin<X,Y>From. join(ListAttribute<? super X,Y> list, JoinType jt)Create a join to the specified List-valued attribute using the given join type.<K,V>
MapJoin<X,K,V>From. join(MapAttribute<? super X,K,V> map, JoinType jt)Create a join to the specified Map-valued attribute using the given join type.<Y> SetJoin<X,Y>From. join(SetAttribute<? super X,Y> set, JoinType jt)Create a join to the specified Set-valued attribute using the given join type.<Y> Join<X,Y>From. join(SingularAttribute<? super X,Y> attribute, JoinType jt)Create a join to the specified single-valued attribute using the given join type.<X,Y>
Join<X,Y>From. join(String attributeName, JoinType jt)Create a join to the specified attribute using the given join type.<X,Y>
CollectionJoin<X,Y>From. joinCollection(String attributeName, JoinType jt)Create a join to the specified Collection-valued attribute using the given join type.<X,Y>
ListJoin<X,Y>From. joinList(String attributeName, JoinType jt)Create a join to the specified List-valued attribute using the given join type.<X,K,V>
MapJoin<X,K,V>From. joinMap(String attributeName, JoinType jt)Create a join to the specified Map-valued attribute using the given join type.<X,Y>
SetJoin<X,Y>From. joinSet(String attributeName, JoinType jt)Create a join to the specified Set-valued attribute using the given join type. -
Uses of JoinType in org.hibernate.envers.internal.tools.query
Methods in org.hibernate.envers.internal.tools.query with parameters of type JoinType Modifier and Type Method Description ParametersQueryBuilder. addJoin(JoinType joinType, String entityName, String alias, boolean select) -
Uses of JoinType in org.hibernate.envers.query
Methods in org.hibernate.envers.query with parameters of type JoinType Modifier and Type Method Description AuditAssociationQuery<? extends AuditAssociationQuery<Q>>AuditAssociationQuery. traverseRelation(String associationName, JoinType joinType)AuditAssociationQuery<? extends AuditAssociationQuery<Q>>AuditAssociationQuery. traverseRelation(String associationName, JoinType joinType, String alias)AuditAssociationQuery<? extends AuditQuery>AuditQuery. traverseRelation(String associationName, JoinType joinType)AuditAssociationQuery<? extends AuditQuery>AuditQuery. traverseRelation(String associationName, JoinType joinType, String alias)AuditAssociationQuery<? extends AuditQuery>AuditQuery. traverseRelation(String associationName, JoinType joinType, String alias, AuditCriterion onClauseCriterion) -
Uses of JoinType in org.hibernate.envers.query.internal.impl
Fields in org.hibernate.envers.query.internal.impl declared as JoinType Modifier and Type Field Description protected JoinTypeAbstractAuditAssociationQuery. joinTypeConstructors in org.hibernate.envers.query.internal.impl with parameters of type JoinType Constructor Description AbstractAuditAssociationQuery(EnversService enversService, AuditReaderImplementor auditReader, Q parent, QueryBuilder queryBuilder, String propertyName, JoinType joinType, Map<String,String> aliasToEntityNameMap, Map<String,String> aliasToComponentPropertyNameMap, String ownerAlias, String userSuppliedAlias, AuditCriterion onClauseCriterion)EntitiesAtRevisionAssociationQuery(EnversService enversService, AuditReaderImplementor auditReader, Q parent, QueryBuilder queryBuilder, String propertyName, JoinType joinType, Map<String,String> aliasToEntityNameMap, Map<String,String> aliasToComponentPropertyNameMap, String ownerAlias, String userSuppliedAlias, AuditCriterion onClauseCriterion)RevisionsOfEntityAssociationQuery(EnversService enversService, AuditReaderImplementor auditReader, Q parent, QueryBuilder queryBuilder, String propertyName, JoinType joinType, Map<String,String> aliasToEntityNameMap, Map<String,String> aliastoComponentPropertyNameMap, String ownerAlias, String userSuppliedAlias, AuditCriterion onClauseCriterion)
-