Package | Description |
---|---|
javax.persistence.criteria | |
org.hibernate.envers.internal.tools.query | |
org.hibernate.envers.query | |
org.hibernate.envers.query.internal.impl | |
org.hibernate.jpa.criteria.path |
Modifier and Type | Method and Description |
---|---|
JoinType |
Join.getJoinType()
Return the join type.
|
JoinType |
Fetch.getJoinType()
Return the join type used in the fetch join.
|
static JoinType |
JoinType.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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
Parameters |
QueryBuilder.addJoin(JoinType joinType,
String entityName,
String alias,
boolean select) |
Modifier and Type | Method and Description |
---|---|
AuditAssociationQuery<? extends AuditQuery> |
AuditQuery.traverseRelation(String associationName,
JoinType joinType) |
AuditAssociationQuery<? extends AuditAssociationQuery<Q>> |
AuditAssociationQuery.traverseRelation(String associationName,
JoinType joinType) |
AuditAssociationQuery<? extends AuditQuery> |
AuditQuery.traverseRelation(String associationName,
JoinType joinType,
String alias) |
AuditAssociationQuery<? extends AuditAssociationQuery<Q>> |
AuditAssociationQuery.traverseRelation(String associationName,
JoinType joinType,
String alias) |
Modifier and Type | Method and Description |
---|---|
AuditAssociationQuery<? extends AuditQuery> |
RevisionsOfEntityQuery.traverseRelation(String associationName,
JoinType joinType) |
AuditAssociationQueryImpl<AuditAssociationQueryImpl<Q>> |
AuditAssociationQueryImpl.traverseRelation(String associationName,
JoinType joinType) |
AuditAssociationQuery<? extends AuditQuery> |
AbstractAuditQuery.traverseRelation(String associationName,
JoinType joinType) |
AuditAssociationQueryImpl<AuditAssociationQueryImpl<Q>> |
AuditAssociationQueryImpl.traverseRelation(String associationName,
JoinType joinType,
String alias) |
AuditAssociationQuery<? extends AuditQuery> |
AbstractAuditQuery.traverseRelation(String associationName,
JoinType joinType,
String alias) |
Constructor and Description |
---|
AuditAssociationQueryImpl(EnversService enversService,
AuditReaderImplementor auditReader,
Q parent,
QueryBuilder queryBuilder,
String propertyName,
JoinType joinType,
Map<String,String> aliasToEntityNameMap,
String ownerAlias,
String userSuppliedAlias) |
Modifier and Type | Field and Description |
---|---|
static JoinType |
AbstractFromImpl.DEFAULT_JOIN_TYPE |
Modifier and Type | Method and Description |
---|---|
JoinType |
AbstractJoinImpl.getJoinType() |
Modifier and Type | Method and Description |
---|---|
<Y> Fetch<X,Y> |
AbstractFromImpl.fetch(PluralAttribute<? super X,?,Y> pluralAttribute,
JoinType jt) |
<Y> Fetch<X,Y> |
AbstractFromImpl.fetch(SingularAttribute<? super X,Y> attribute,
JoinType jt) |
<X,Y> Fetch<X,Y> |
AbstractFromImpl.fetch(String attributeName,
JoinType jt) |
<Y> CollectionJoin<X,Y> |
AbstractFromImpl.join(CollectionAttribute<? super X,Y> collection,
JoinType jt) |
<Y> ListJoin<X,Y> |
AbstractFromImpl.join(ListAttribute<? super X,Y> list,
JoinType jt) |
<K,V> MapJoin<X,K,V> |
AbstractFromImpl.join(MapAttribute<? super X,K,V> map,
JoinType jt) |
<Y> SetJoin<X,Y> |
AbstractFromImpl.join(SetAttribute<? super X,Y> set,
JoinType jt) |
<Y> Join<X,Y> |
AbstractFromImpl.join(SingularAttribute<? super X,Y> attribute,
JoinType jt) |
<X,Y> Join<X,Y> |
AbstractFromImpl.join(String attributeName,
JoinType jt) |
<X,Y> CollectionJoin<X,Y> |
AbstractFromImpl.joinCollection(String attributeName,
JoinType jt) |
<X,Y> ListJoin<X,Y> |
AbstractFromImpl.joinList(String attributeName,
JoinType jt) |
<X,K,V> MapJoin<X,K,V> |
AbstractFromImpl.joinMap(String attributeName,
JoinType jt) |
<X,Y> SetJoin<X,Y> |
AbstractFromImpl.joinSet(String attributeName,
JoinType jt) |
Constructor and Description |
---|
AbstractJoinImpl(CriteriaBuilderImpl criteriaBuilder,
Class<X> javaType,
PathSource<Z> pathSource,
Attribute<? super Z,?> joinAttribute,
JoinType joinType) |
AbstractJoinImpl(CriteriaBuilderImpl criteriaBuilder,
PathSource<Z> pathSource,
Attribute<? super Z,X> joinAttribute,
JoinType joinType) |
CollectionAttributeJoin(CriteriaBuilderImpl criteriaBuilder,
Class<E> javaType,
PathSource<O> pathSource,
CollectionAttribute<? super O,E> joinAttribute,
JoinType joinType) |
ListAttributeJoin(CriteriaBuilderImpl criteriaBuilder,
Class<E> javaType,
PathSource<O> pathSource,
ListAttribute<? super O,E> joinAttribute,
JoinType joinType) |
MapAttributeJoin(CriteriaBuilderImpl criteriaBuilder,
Class<V> javaType,
PathSource<O> pathSource,
MapAttribute<? super O,K,V> joinAttribute,
JoinType joinType) |
PluralAttributeJoinSupport(CriteriaBuilderImpl criteriaBuilder,
Class<E> javaType,
PathSource<O> pathSource,
Attribute<? super O,?> joinAttribute,
JoinType joinType) |
SetAttributeJoin(CriteriaBuilderImpl criteriaBuilder,
Class<E> javaType,
PathSource<O> pathSource,
SetAttribute<? super O,E> joinAttribute,
JoinType joinType) |
SingularAttributeJoin(CriteriaBuilderImpl criteriaBuilder,
Class<X> javaType,
PathSource<O> pathSource,
SingularAttribute<? super O,?> joinAttribute,
JoinType joinType) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.