T - @Immutable public class PathImpl<T> extends ExpressionBase<T> implements Path<T>
PathImpl defines a default implementation of the Path interface| Modifier | Constructor and Description |
|---|---|
protected |
PathImpl(java.lang.Class<? extends T> type,
Path<?> parent,
java.lang.String property) |
protected |
PathImpl(java.lang.Class<? extends T> type,
PathMetadata metadata) |
protected |
PathImpl(java.lang.Class<? extends T> type,
java.lang.String variable) |
| Modifier and Type | Method and Description |
|---|---|
<R,C> R |
accept(Visitor<R,C> v,
C context)
Accept the visitor with the given context
|
boolean |
equals(java.lang.Object o) |
java.lang.reflect.AnnotatedElement |
getAnnotatedElement()
Return the annotated element related to the given path
|
PathMetadata |
getMetadata()
Get the metadata for this path
|
Path<?> |
getRoot()
Get the root for this path
|
getType, hashCode, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetTypeprotected PathImpl(java.lang.Class<? extends T> type, java.lang.String variable)
protected PathImpl(java.lang.Class<? extends T> type, PathMetadata metadata)
public final boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic final PathMetadata getMetadata()
PathgetMetadata in interface Path<T>public final Path<?> getRoot()
Pathpublic final java.lang.reflect.AnnotatedElement getAnnotatedElement()
PathFor property paths the annotated element contains the annotations of the related field and/or getter method and for all others paths the annotated element is the expression type.
getAnnotatedElement in interface Path<T>public final <R,C> R accept(Visitor<R,C> v, C context)
Expressionaccept in interface Expression<T>R - return typeC - context typev - visitorcontext - context of visitCopyright © 2007–2021 Querydsl. All rights reserved.