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