Package | Description |
---|---|
com.querydsl.core.types.dsl |
DSL expression types
|
Modifier and Type | Method and Description |
---|---|
<T> PathBuilder<T> |
PathBuilderFactory.create(Class<T> type)
Create a new PathBuilder instance for the given type
|
PathBuilder<Object> |
PathBuilder.get(String property)
Create a PathBuilder instance for the given property
|
<A> PathBuilder<A> |
PathBuilder.get(String property,
Class<A> type)
Create a PathBuilder for the given property with the given type
|
Modifier and Type | Method and Description |
---|---|
<A> CollectionPath<A,PathBuilder<A>> |
PathBuilder.getCollection(String property,
Class<A> type)
Create a new Collection typed path
|
<A> ListPath<A,PathBuilder<A>> |
PathBuilder.getList(String property,
Class<A> type)
Create a new List typed path
|
<K,V> MapPath<K,V,PathBuilder<V>> |
PathBuilder.getMap(String property,
Class<K> key,
Class<V> value)
Create a new Map typed path
|
<A> SetPath<A,PathBuilder<A>> |
PathBuilder.getSet(String property,
Class<A> type)
Create a new Set typed path
|
Copyright © 2007–2016 Querydsl. All rights reserved.