Package org.hibernate.sql.results.graph
Class UnfetchedResultAssembler<J>
- java.lang.Object
-
- org.hibernate.sql.results.graph.UnfetchedResultAssembler<J>
-
- All Implemented Interfaces:
DomainResultAssembler<J>
public class UnfetchedResultAssembler<J> extends Object implements DomainResultAssembler<J>
-
-
Constructor Summary
Constructors Constructor Description UnfetchedResultAssembler(JavaType<J> javaType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description J
assemble(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options)
The main "assembly" contract.JavaType<J>
getAssembledJavaType()
The JavaType describing the Java type that this assembler assembles.-
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
assemble, resolveState
-
-
-
-
Method Detail
-
assemble
public J assemble(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options)
Description copied from interface:DomainResultAssembler
The main "assembly" contract. Assemble the result and return it.- Specified by:
assemble
in interfaceDomainResultAssembler<J>
-
getAssembledJavaType
public JavaType<J> getAssembledJavaType()
Description copied from interface:DomainResultAssembler
The JavaType describing the Java type that this assembler assembles.- Specified by:
getAssembledJavaType
in interfaceDomainResultAssembler<J>
-
-