Uses of Interface
org.hibernate.sql.results.spi.RowTransformer
-
Packages that use RowTransformer Package Description org.hibernate.loader.ast.internal org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.sql.exec.internal Implementation of the SPI for execution of SQL statements via JDBC.org.hibernate.sql.exec.spi SPI for execution of SQL statements via JDBC.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.query.sqm.internal
Methods in org.hibernate.query.sqm.internal that return RowTransformer Modifier and Type Method Description protected static <T> RowTransformer<T>
ConcreteSqmSelectQueryPlan. determineRowTransformer(SqmSelectStatement<?> sqm, Class<T> resultClass, TupleMetadata tupleMetadata, QueryOptions queryOptions)
-
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 <T,R>
TJdbcSelectExecutorStandardImpl. executeQuery(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, Function<String,PreparedStatement> statementCreator, ResultsConsumer<T,R> resultsConsumer)
-
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 <T,R>
TJdbcSelectExecutor. executeQuery(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, Function<String,PreparedStatement> statementCreator, ResultsConsumer<T,R> resultsConsumer)
default <R> List<R>
JdbcSelectExecutor. list(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> requestedJavaType, ListResultsConsumer.UniqueSemantic uniqueSemantic)
default <R> List<R>
JdbcSelectExecutor. list(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, ListResultsConsumer.UniqueSemantic uniqueSemantic)
default <R> ScrollableResultsImplementor<R>
JdbcSelectExecutor. scroll(JdbcOperationQuerySelect jdbcSelect, ScrollMode scrollMode, 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
RowTransformerCheckingImpl<R>
class
RowTransformerConstructorImpl<T>
RowTransformer
instantiating an arbitrary classclass
RowTransformerDatabaseSnapshotImpl<T>
class
RowTransformerJpaTupleImpl
RowTransformer generating a JPATuple
class
RowTransformerListImpl<T>
RowTransformer
instantiating aList
class
RowTransformerMapImpl
RowTransformer
instantiating aMap
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)
static <R> RowReader<R>
ResultsHelper. createRowReader(ExecutionContext executionContext, LockOptions lockOptions, RowTransformer<R> rowTransformer, Class<R> transformedResultJavaType, JdbcValuesMapping jdbcValuesMapping)
Constructors in org.hibernate.sql.results.internal with parameters of type RowTransformer Constructor Description StandardRowReader(List<DomainResultAssembler<?>> resultAssemblers, InitializersList initializers, RowTransformer<T> rowTransformer, Class<T> domainResultJavaType)
-