Class NativeQueryTupleTransformer
java.lang.Object
org.hibernate.jpa.spi.NativeQueryTupleTransformer
- All Implemented Interfaces:
TupleTransformer<Tuple>, TypedTupleTransformer<Tuple>
A
TypedTupleTransformer for handling JPA Tuple results from native queries.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe type resulting from this transformationtransformTuple(Object[] tuple, String[] aliases) Tuples are the elements making up each "row" of the query result.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
NativeQueryTupleTransformer
public NativeQueryTupleTransformer()
-
-
Method Details
-
transformTuple
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<Tuple>- Parameters:
tuple- The result elementsaliases- The result aliases ("parallel" array to tuple)- Returns:
- The transformed row.
-
getTransformedType
Description copied from interface:TypedTupleTransformerThe type resulting from this transformation- Specified by:
getTransformedTypein interfaceTypedTupleTransformer<Tuple>
-