Modifier and Type | Method and Description |
---|---|
static PathMetadata |
forArrayAccess(Path<?> parent,
Expression<Integer> index)
Create a new PathMetadata instance for indexed array access
|
static PathMetadata |
forArrayAccess(Path<?> parent,
int index)
Create a new PathMetadata instance for indexed array access
|
static PathMetadata |
forCollectionAny(Path<?> parent)
Create a new PathMetadata instance for collection any access
|
static <T> PathMetadata |
forDelegate(Path<T> delegate)
Create a new PathMetadata instance for delegate access
|
static PathMetadata |
forListAccess(Path<?> parent,
Expression<Integer> index)
Create a new PathMetadata instance for indexed list access
|
static PathMetadata |
forListAccess(Path<?> parent,
int index)
Create a new PathMetadata instance for indexed list access
|
static <KT> PathMetadata |
forMapAccess(Path<?> parent,
Expression<KT> key)
Create a new PathMetadata instance for key based map access
|
static <KT> PathMetadata |
forMapAccess(Path<?> parent,
KT key)
Create a new PathMetadata instance for for key based map access
|
static PathMetadata |
forProperty(Path<?> parent,
String property)
Create a new PathMetadata instance for property access
|
static PathMetadata |
forVariable(String variable)
Create a new PathMetadata instance for a variable
|
public static PathMetadata forArrayAccess(Path<?> parent, Expression<Integer> index)
parent
- parent pathindex
- index of elementpublic static PathMetadata forArrayAccess(Path<?> parent, @Nonnegative int index)
parent
- parent pathindex
- index of elementpublic static PathMetadata forCollectionAny(Path<?> parent)
parent
- parent pathpublic static <T> PathMetadata forDelegate(Path<T> delegate)
delegate
- delegate pathpublic static PathMetadata forListAccess(Path<?> parent, Expression<Integer> index)
parent
- parent pathindex
- index of elementpublic static PathMetadata forListAccess(Path<?> parent, @Nonnegative int index)
parent
- parent pathindex
- index of elementpublic static <KT> PathMetadata forMapAccess(Path<?> parent, Expression<KT> key)
parent
- parent pathkey
- key for map accesspublic static <KT> PathMetadata forMapAccess(Path<?> parent, KT key)
parent
- parent pathkey
- key for map accesspublic static PathMetadata forProperty(Path<?> parent, String property)
parent
- parent pathproperty
- property namepublic static PathMetadata forVariable(String variable)
variable
- variable nameCopyright © 2007–2016 Querydsl. All rights reserved.