mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
Added javadocs to ResultTransformer
This commit is contained in:
parent
c92073879c
commit
ebe6903e45
@ -1,6 +1,19 @@
|
||||
/*
|
||||
* Copyright (c) 2010 Mysema Ltd.
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
package com.mysema.query;
|
||||
|
||||
|
||||
/**
|
||||
* Executes query on a Projectable and transforms results into T. This can be used for example
|
||||
* to group projected columns or to filter out duplicate results.
|
||||
*
|
||||
* @see com.mysema.query.support.GroupBy
|
||||
* @author sasa
|
||||
*
|
||||
* @param <T> Transformations target type
|
||||
*/
|
||||
public interface ResultTransformer<T> {
|
||||
|
||||
public T transform(Projectable projectable);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user