Uses of Interface
com.querydsl.core.ResultTransformer
Packages that use ResultTransformer
Package
Description
Basic Query elements
Aggregating post processing functionality
Various support classes
-
Uses of ResultTransformer in com.querydsl.core
Methods in com.querydsl.core with parameters of type ResultTransformerModifier and TypeMethodDescription<S> SFetchableQuery.transform(ResultTransformer<S> transformer) Apply the given transformer to thisFetchableQueryinstance and return the results -
Uses of ResultTransformer in com.querydsl.core.group
Classes in com.querydsl.core.group that implement ResultTransformerModifier and TypeClassDescriptionclassBase class for GroupBy result transformersclassGroupByGenericCollection<K,V, RES extends Collection<V>> Provides aggregated results as a collectionclassGroupByGenericMap<K,V, RES extends Map<K, V>> Provides aggregated results as a mapclassGroupByIterate<K,V> Provides aggregated results as an iteratorclassGroupByList<K,V> Provides aggregated results as a listclassGroupByMap<K,V> Provides aggregated results as a mapclassGroupByProjection<K,V> GroupByProjection provides projection of the Group results via the transform template methodMethods in com.querydsl.core.group that return ResultTransformerModifier and TypeMethodDescriptionGroupByBuilder.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<RES extends Map<K,Group>>
ResultTransformer<RES>GroupByBuilder.as(Supplier<RES> mapFactory, Expression<?>... expressions) Get the results as a map<V,RES extends Map<K, V>>
ResultTransformer<RES>GroupByBuilder.as(Supplier<RES> mapFactory, Expression<V> expression) Get the results as a map<RES extends Collection<Group>>
ResultTransformer<RES>GroupByBuilder.collection(Supplier<RES> resultFactory, Expression<?>... expressions) Get the results as a collection.<V,RES extends Collection<V>>
ResultTransformer<RES>GroupByBuilder.collection(Supplier<RES> resultFactory, Expression<V> expression) Get the results as a set<V,RES extends Collection<V>>
ResultTransformer<RES>GroupByBuilder.collection(Supplier<RES> resultFactory, FactoryExpression<V> expression) Get the results as a listResultTransformer<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 iteratorGroupByBuilder.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 -
Uses of ResultTransformer in com.querydsl.core.support
Methods in com.querydsl.core.support with parameters of type ResultTransformerModifier and TypeMethodDescription<T> TFetchableQueryBase.transform(ResultTransformer<T> transformer)