Package | Description |
---|---|
com.querydsl.core |
Basic Query elements
|
com.querydsl.core.group |
Aggregating post processing functionality
|
com.querydsl.core.support |
Various support classes
|
Modifier and Type | Method and Description |
---|---|
<S> S |
FetchableQuery.transform(ResultTransformer<S> transformer)
Apply the given transformer to this
FetchableQuery instance and return the results |
Modifier and Type | Class and Description |
---|---|
class |
GroupByIterate<K,V>
Provides aggregated results as an iterator
|
class |
GroupByList<K,V>
Provides aggregated results as a list
|
class |
GroupByMap<K,V>
Provides aggregated results as a map
|
class |
GroupByProjection<K,V>
GroupByProjection provides projection of the Group results via the transform template method
|
Modifier and Type | Method and Description |
---|---|
ResultTransformer<Map<K,Group>> |
GroupByBuilder.as(Expression<?>... expressions)
Get the results as a map
|
<V> ResultTransformer<Map<K,V>> |
GroupByBuilder.as(Expression<V> expression)
Get the results as a map
|
<V> ResultTransformer<Map<K,V>> |
GroupByBuilder.as(FactoryExpression<V> expression)
Get the results as a map
|
ResultTransformer<com.mysema.commons.lang.CloseableIterator<Group>> |
GroupByBuilder.iterate(Expression<?>... expressions)
Get the results as a closeable iterator
|
<V> ResultTransformer<com.mysema.commons.lang.CloseableIterator<V>> |
GroupByBuilder.iterate(Expression<V> expression)
Get the results as a closeable iterator
|
<V> ResultTransformer<com.mysema.commons.lang.CloseableIterator<V>> |
GroupByBuilder.iterate(FactoryExpression<V> expression)
Get the results as a closeable iterator
|
ResultTransformer<List<Group>> |
GroupByBuilder.list(Expression<?>... expressions)
Get the results as a list
|
<V> ResultTransformer<List<V>> |
GroupByBuilder.list(Expression<V> expression)
Get the results as a list
|
<V> ResultTransformer<List<V>> |
GroupByBuilder.list(FactoryExpression<V> expression)
Get the results as a list
|
Modifier and Type | Method and Description |
---|---|
<T> T |
FetchableQueryBase.transform(ResultTransformer<T> transformer) |
Copyright © 2007–2016 Querydsl. All rights reserved.