Package | Description |
---|---|
org.hibernate.jpa.criteria | |
org.hibernate.jpa.criteria.path |
Modifier and Type | Interface and Description |
---|---|
interface |
CollectionJoinImplementor<Z,X>
Specialization of
JoinImplementor for Collection typed attribute joins |
interface |
FromImplementor<Z,X>
Implementation contract for the JPA
From interface. |
interface |
JoinImplementor<Z,X>
|
interface |
ListJoinImplementor<Z,X>
Specialization of
JoinImplementor for List typed attribute joins |
interface |
MapJoinImplementor<Z,K,V>
Specialization of
JoinImplementor for Map typed attribute joins |
interface |
PathImplementor<X>
Implementation contract for the JPA
Path interface. |
interface |
SetJoinImplementor<Z,X>
Specialization of
JoinImplementor for Set typed attribute joins |
Modifier and Type | Method and Description |
---|---|
PathSource |
IllegalDereferenceException.getPathSource() |
Constructor and Description |
---|
IllegalDereferenceException(PathSource pathSource) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractFromImpl<Z,X>
Convenience base class for various
From implementations. |
class |
AbstractJoinImpl<Z,X>
Convenience base class for various
Join implementations. |
class |
AbstractPathImpl<X>
Convenience base class for various
Path implementations. |
class |
CollectionAttributeJoin<O,E>
Models a join based on a plural association attribute.
|
static class |
CollectionAttributeJoin.TreatedCollectionAttributeJoin<O,T> |
class |
ListAttributeJoin<O,E>
Models a join based on a list-style plural association attribute.
|
static class |
ListAttributeJoin.TreatedListAttributeJoin<O,T> |
class |
MapAttributeJoin<O,K,V>
Models a join based on a map-style plural association attribute.
|
static class |
MapAttributeJoin.TreatedMapAttributeJoin<O,K,T> |
static class |
MapKeyHelpers.MapKeyPath<K>
Models a path to a map key.
|
static class |
MapKeyHelpers.MapKeySource<K,V>
Defines a path for the map which can then be used to represent the source of the
map key "attribute".
|
class |
PluralAttributeJoinSupport<O,C,E>
Support for defining joins to plural attributes (JPA requires typing based on
the specific collection type so we cannot really implement all support in a
single class)
|
class |
PluralAttributePath<X>
Models a path for a
PluralAttribute generally obtained from a
Path.get(javax.persistence.metamodel.SingularAttribute<? super X, Y>) call |
class |
RootImpl<X>
Hibernate implementation of the JPA
Root contract |
static class |
RootImpl.TreatedRoot<T> |
class |
SetAttributeJoin<O,E>
Models a join based on a set-style plural association attribute.
|
static class |
SetAttributeJoin.TreatedSetAttributeJoin<O,T> |
class |
SingularAttributeJoin<O,X>
Models a join based on a singular attribute
|
static class |
SingularAttributeJoin.TreatedSingularAttributeJoin<O,T> |
class |
SingularAttributePath<X>
Models a path for a
SingularAttribute generally obtained from a
Path.get(SingularAttribute) call |
static class |
SingularAttributePath.TreatedSingularAttributePath<T> |
Modifier and Type | Method and Description |
---|---|
PathSource<?> |
AbstractPathImpl.getParentPath() |
PathSource |
AbstractPathImpl.getPathSource() |
PathSource<Z> |
AbstractFromImpl.getPathSource() |
protected PathSource |
SetAttributeJoin.TreatedSetAttributeJoin.getPathSourceForSubPaths() |
protected PathSource |
RootImpl.TreatedRoot.getPathSourceForSubPaths() |
protected PathSource |
MapAttributeJoin.TreatedMapAttributeJoin.getPathSourceForSubPaths() |
protected PathSource |
ListAttributeJoin.TreatedListAttributeJoin.getPathSourceForSubPaths() |
protected PathSource |
CollectionAttributeJoin.TreatedCollectionAttributeJoin.getPathSourceForSubPaths() |
protected PathSource |
AbstractPathImpl.getPathSourceForSubPaths() |
Constructor and Description |
---|
AbstractFromImpl(CriteriaBuilderImpl criteriaBuilder,
Class<X> javaType,
PathSource pathSource) |
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) |
AbstractPathImpl(CriteriaBuilderImpl criteriaBuilder,
Class<X> javaType,
PathSource pathSource)
Constructs a basic path instance.
|
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) |
PluralAttributePath(CriteriaBuilderImpl criteriaBuilder,
PathSource source,
PluralAttribute<?,X,?> attribute) |
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) |
SingularAttributePath(CriteriaBuilderImpl criteriaBuilder,
Class<X> javaType,
PathSource pathSource,
SingularAttribute<?,X> attribute) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.