Package org.hibernate.sql.results.spi
Interface RowTransformer<T>
- All Known Implementing Classes:
RowTransformerArrayImpl
,RowTransformerCheckingImpl
,RowTransformerConstructorImpl
,RowTransformerJpaTupleImpl
,RowTransformerListImpl
,RowTransformerMapImpl
,RowTransformerSingularReturnImpl
,RowTransformerStandardImpl
,RowTransformerTupleTransformerAdapter
Defines transformation of a raw row in the domain query result row.
E.g. a query might select multiple
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault int
determineNumberOfResultElements
(int rawElementCount) How many result elements will this transformation produce?transformRow
(Object[] row) Transform the "raw" row values into the ultimate query result (for a row)
-
Method Details
-
transformRow
Transform the "raw" row values into the ultimate query result (for a row) -
determineNumberOfResultElements
default int determineNumberOfResultElements(int rawElementCount) How many result elements will this transformation produce?
-