File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed
hibernate-core/src/main/java/org/hibernate Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 10
10
import java .util .List ;
11
11
12
12
/**
13
- * Defines some transformation applied to each result of a {@link Query}
14
- * before the results are packaged as a {@link List} and returned to the caller. Each result
15
- * is received as a tuple (that is, as an {@code Object[]}), and may be transformed to
16
- * some other type.
13
+ * Defines some transformation applied to each result of a {@link Query} before
14
+ * the results are packaged as a {@link List} and returned to the caller. Each
15
+ * result is received as a tuple (that is, as an {@code Object[]}), and may be
16
+ * transformed to some other type.
17
17
*
18
- * @implNote Every {@code TupleTransformer} is automatically wrapped in an instance of
19
- * {@link RowTransformerTupleTransformerAdapter}, adapting it to the
20
- * {@link org.hibernate.sql.results.spi.RowTransformer} contract, which is always
21
- * used to actually process the results internally.
18
+ * @implNote Every {@code TupleTransformer} is automatically wrapped in an
19
+ * instance of {@link RowTransformerTupleTransformerAdapter}, adapting it to
20
+ * the {@link org.hibernate.sql.results.spi.RowTransformer} contract, which is
21
+ * always used to actually process the results internally.
22
22
*
23
23
* @see Query#setTupleTransformer
24
24
* @see Query#list
Original file line number Diff line number Diff line change 9
9
/**
10
10
* Defines transformation of a raw row in the domain query result row.
11
11
*
12
- * E.g. a query might select multiple
13
- *
14
12
* @see org.hibernate.query.TupleTransformer
15
13
*
16
14
* @author Steve Ebersole
You can’t perform that action at this time.
0 commit comments