Class RowTransformerArrayImpl
- java.lang.Object
-
- org.hibernate.sql.results.internal.RowTransformerArrayImpl
-
- All Implemented Interfaces:
RowTransformer<Object[]>
public class RowTransformerArrayImpl extends Object implements RowTransformer<Object[]>
RowTransformer used when an array is explicitly specified as the return type
-
-
Field Summary
Fields Modifier and Type Field Description static RowTransformerArrayImpl
INSTANCE
Singleton access
-
Constructor Summary
Constructors Constructor Description RowTransformerArrayImpl()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RowTransformerArrayImpl
instance()
Object[]
transformRow(Object[] row)
Transform the "raw" row values into the ultimate query result (for a row)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.results.spi.RowTransformer
determineNumberOfResultElements
-
-
-
-
Field Detail
-
INSTANCE
public static final RowTransformerArrayImpl INSTANCE
Singleton access
-
-
Method Detail
-
instance
public static RowTransformerArrayImpl instance()
-
transformRow
public Object[] transformRow(Object[] row)
Description copied from interface:RowTransformer
Transform the "raw" row values into the ultimate query result (for a row)- Specified by:
transformRow
in interfaceRowTransformer<Object[]>
-
-