Package | Description |
---|---|
com.mysema.query |
Contains basic Query elements
|
com.mysema.query.group | |
com.mysema.query.support |
Various support classes
|
Modifier and Type | Method and Description |
---|---|
<T> T |
Projectable.transform(ResultTransformer<T> transformer)
Apply the given transformer to this Projectable 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 |
ProjectableQuery.transform(ResultTransformer<T> transformer) |
<T> T |
ProjectableAdapter.transform(ResultTransformer<T> transformer) |
Copyright © 2007–2015 Mysema Ltd. All rights reserved.