Package jakarta.persistence.criteria
Interface Path<X>
- Type Parameters:
X
- the type referenced by the path
- All Superinterfaces:
Expression<X>
,Selection<X>
,TupleElement<X>
- All Known Subinterfaces:
CollectionJoin<Z,
,E> From<Z,
,X> Join<Z,
,X> ListJoin<Z,
,E> MapJoin<Z,
,K, V> PluralJoin<Z,
,C, E> Root<X>
,SetJoin<Z,
E>
Represents a simple or compound attribute path from a
bound type or collection, and is a "primitive" expression.
- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescription<K,
V, M extends Map<K, V>>
Expression<M>get
(MapAttribute<? super X, K, V> map) Create a path corresponding to the referenced map-valued attribute.<E,
C extends Collection<E>>
Expression<C>get
(PluralAttribute<? super X, C, E> collection) Create a path corresponding to the referenced collection-valued attribute.<Y> Path<Y>
get
(SingularAttribute<? super X, Y> attribute) Create a path corresponding to the referenced single-valued attribute.<Y> Path<Y>
Create a path corresponding to the referenced attribute.getModel()
Return the bindable object that corresponds to the path expression.Path<?>
Return the parent "node" in the path or null if no parent.Expression<Class<? extends X>>
type()
Create an expression corresponding to the type of the path.Methods inherited from interface jakarta.persistence.criteria.Expression
as, cast, equalTo, equalTo, in, in, in, in, isNotNull, isNull, notEqualTo, notEqualTo
Methods inherited from interface jakarta.persistence.criteria.Selection
alias, getCompoundSelectionItems, isCompoundSelection
Methods inherited from interface jakarta.persistence.TupleElement
getAlias, getJavaType
-
Method Details
-
getModel
Return the bindable object that corresponds to the path expression.- Returns:
- bindable object corresponding to the path
-
getParentPath
Path<?> getParentPath()Return the parent "node" in the path or null if no parent.- Returns:
- parent
-
get
Create a path corresponding to the referenced single-valued attribute.- Parameters:
attribute
- single-valued attribute- Returns:
- path corresponding to the referenced attribute
-
get
Create a path corresponding to the referenced collection-valued attribute.- Parameters:
collection
- collection-valued attribute- Returns:
- expression corresponding to the referenced attribute
-
get
Create a path corresponding to the referenced map-valued attribute.- Parameters:
map
- map-valued attribute- Returns:
- expression corresponding to the referenced attribute
-
type
Expression<Class<? extends X>> type()Create an expression corresponding to the type of the path.- Returns:
- expression corresponding to the type of the path
-
get
Create a path corresponding to the referenced attribute.Note: Applications using the string-based API may need to specify the type resulting from the
get(jakarta.persistence.metamodel.SingularAttribute<? super X, Y>)
operation in order to avoid the use ofPath
variables.For example:
rather than:
- Parameters:
attributeName
- name of the attribute- Returns:
- path corresponding to the referenced attribute
- Throws:
IllegalStateException
- if invoked on a path that corresponds to a basic typeIllegalArgumentException
- if attribute of the given name does not otherwise exist
-