Package org.hibernate.jpa.spi
Class NativeQueryMapTransformer
- java.lang.Object
-
- org.hibernate.jpa.spi.NativeQueryMapTransformer
-
- All Implemented Interfaces:
TupleTransformer<Map<String,Object>>
public class NativeQueryMapTransformer extends Object implements TupleTransformer<Map<String,Object>>
ATupleTransformerfor handlingMapresults from native queries.
-
-
Field Summary
Fields Modifier and Type Field Description static NativeQueryMapTransformerINSTANCE
-
Constructor Summary
Constructors Constructor Description NativeQueryMapTransformer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>transformTuple(Object[] tuple, String[] aliases)Tuples are the elements making up each "row" of the query result.
-
-
-
Field Detail
-
INSTANCE
public static final NativeQueryMapTransformer INSTANCE
-
-
Method Detail
-
transformTuple
public Map<String,Object> transformTuple(Object[] tuple, String[] aliases)
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<Map<String,Object>>- Parameters:
tuple- The result elementsaliases- The result aliases ("parallel" array to tuple)- Returns:
- The transformed row.
-
-