Class TupleResultAssembler<J>
- java.lang.Object
-
- org.hibernate.sql.results.graph.tuple.TupleResultAssembler<J>
-
- All Implemented Interfaces:
DomainResultAssembler<J>
public class TupleResultAssembler<J> extends Object implements DomainResultAssembler<J>
-
-
Constructor Summary
Constructors Constructor Description TupleResultAssembler(int[] valuesArrayPositions, JavaType<J> assembledJavaType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Jassemble(RowProcessingState rowProcessingState)The main "assembly" contract.Object[]extractRawValue(RowProcessingState rowProcessingState)Access to the raw value (unconverted, if a converter applied)JavaType<J>getAssembledJavaType()The JavaType describing the Java type that this assembler assembles.int[]getValuesArrayPositions()-
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.graph.DomainResultAssembler
forEachResultAssembler, getInitializer, resolveState
-
-
-
-
Method Detail
-
getValuesArrayPositions
public int[] getValuesArrayPositions()
-
extractRawValue
public Object[] extractRawValue(RowProcessingState rowProcessingState)
Access to the raw value (unconverted, if a converter applied)
-
assemble
public J assemble(RowProcessingState rowProcessingState)
Description copied from interface:DomainResultAssemblerThe main "assembly" contract. Assemble the result and return it.- Specified by:
assemblein interfaceDomainResultAssembler<J>
-
getAssembledJavaType
public JavaType<J> getAssembledJavaType()
Description copied from interface:DomainResultAssemblerThe JavaType describing the Java type that this assembler assembles.- Specified by:
getAssembledJavaTypein interfaceDomainResultAssembler<J>
-
-