Class ToListResultTransformer
java.lang.Object
org.hibernate.transform.ToListResultTransformer
- All Implemented Interfaces:
TupleTransformer<List<Object>>, TypedTupleTransformer<List<Object>>
@Deprecated
public class ToListResultTransformer
extends Object
implements TypedTupleTransformer<List<Object>>
Deprecated.
Transforms each result row from a tuple into a
List whose elements are each tuple value.- See Also:
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.The type resulting from this transformationtransformTuple(Object[] tuple, String[] aliases) Deprecated.Tuples are the elements making up each "row" of the query result.
-
Field Details
-
INSTANCE
Deprecated.
-
-
Method Details
-
getTransformedType
Deprecated.Description copied from interface:TypedTupleTransformerThe type resulting from this transformation- Specified by:
getTransformedTypein interfaceTypedTupleTransformer<List<Object>>
-
transformTuple
Deprecated.Description copied from interface:TupleTransformerTuples are the elements making up each "row" of the query result. The contract here is to transform these elements into the final row shape.- Specified by:
transformTuplein interfaceTupleTransformer<List<Object>>- Parameters:
tuple- The result elementsaliases- The result aliases ("parallel" array to tuple)- Returns:
- The transformed row.
-