Uses of Interface
org.hibernate.sql.results.spi.RowTransformer
-
Packages that use RowTransformer Package Description org.hibernate.loader.ast.internal org.hibernate.sql.exec.internal org.hibernate.sql.exec.spi org.hibernate.sql.results.internal -
-
Uses of RowTransformer in org.hibernate.loader.ast.internal
Methods in org.hibernate.loader.ast.internal that return RowTransformer Modifier and Type Method Description protected RowTransformer<Object[]>
SingleIdArrayLoadPlan. getRowTransformer()
protected RowTransformer<T>
SingleIdLoadPlan. getRowTransformer()
-
Uses of RowTransformer in org.hibernate.sql.exec.internal
Methods in org.hibernate.sql.exec.internal with parameters of type RowTransformer Modifier and Type Method Description <R> List<R>
JdbcSelectExecutorStandardImpl. list(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, ListResultsConsumer.UniqueSemantic uniqueSemantic)
<R> ScrollableResultsImplementor<R>
JdbcSelectExecutorStandardImpl. scroll(JdbcSelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
<R> Stream<R>
JdbcSelectExecutorStandardImpl. stream(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
-
Uses of RowTransformer in org.hibernate.sql.exec.spi
Methods in org.hibernate.sql.exec.spi with parameters of type RowTransformer Modifier and Type Method Description <R> List<R>
JdbcSelectExecutor. list(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> requestedJavaType, ListResultsConsumer.UniqueSemantic uniqueSemantic)
default <R> List<R>
JdbcSelectExecutor. list(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, ListResultsConsumer.UniqueSemantic uniqueSemantic)
<R> ScrollableResultsImplementor<R>
JdbcSelectExecutor. scroll(JdbcSelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
<R> Stream<R>
JdbcSelectExecutor. stream(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
-
Uses of RowTransformer in org.hibernate.sql.results.internal
Classes in org.hibernate.sql.results.internal that implement RowTransformer Modifier and Type Class Description class
RowTransformerArrayImpl
RowTransformer used when an array is explicitly specified as the return typeclass
RowTransformerDatabaseSnapshotImpl<T>
class
RowTransformerJpaTupleImpl
RowTransformer generating a JPATuple
class
RowTransformerSingularReturnImpl<R>
class
RowTransformerStandardImpl<T>
The standard RowTransformer - if the row array has just a single dimension, the value from that dimension (index zero) is returned otherwise, the array itself is returnedclass
RowTransformerTupleTransformerAdapter<T>
An adapter for treating aTupleTransformer
as aRowTransformer
Methods in org.hibernate.sql.results.internal with parameters of type RowTransformer Modifier and Type Method Description static <R> RowReader<R>
ResultsHelper. createRowReader(ExecutionContext executionContext, LockOptions lockOptions, RowTransformer<R> rowTransformer, Class<R> transformedResultJavaType, JdbcValues jdbcValues)
Constructors in org.hibernate.sql.results.internal with parameters of type RowTransformer Constructor Description StandardRowReader(List<DomainResultAssembler<?>> resultAssemblers, List<Initializer> initializers, RowTransformer<T> rowTransformer, Class<T> domainResultJavaType)
-