Uses of Interface
org.hibernate.query.TupleTransformer
-
Packages that use TupleTransformer Package Description org.hibernate.engine.jdbc.mutation.internal org.hibernate.jpa.spi An SPI for managing cases where, by default, Hibernate intentionally violates the letter of the JPA specification.org.hibernate.loader.ast.internal org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.hql.spi SPIs for HQL support.org.hibernate.query.internal org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sql.spi SPIs for native SQL query support.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.sql.results.internal org.hibernate.transform Defines strategies for post-processing criteria query results into a form convenient to the application. -
-
Uses of TupleTransformer in org.hibernate.engine.jdbc.mutation.internal
Methods in org.hibernate.engine.jdbc.mutation.internal that return TupleTransformer Modifier and Type Method Description TupleTransformer<?>
MutationQueryOptions. getTupleTransformer()
-
Uses of TupleTransformer in org.hibernate.jpa.spi
Classes in org.hibernate.jpa.spi that implement TupleTransformer Modifier and Type Class Description class
NativeQueryConstructorTransformer<T>
ATupleTransformer
for handlingList
results from native queries.class
NativeQueryListTransformer
ATupleTransformer
for handlingList
results from native queries.class
NativeQueryMapTransformer
ATupleTransformer
for handlingMap
results from native queries.class
NativeQueryTupleTransformer
AResultTransformer
for handling JPATuple
results from native queries. -
Uses of TupleTransformer in org.hibernate.loader.ast.internal
Methods in org.hibernate.loader.ast.internal that return TupleTransformer Modifier and Type Method Description TupleTransformer<?>
LoaderSqlAstCreationState. getTupleTransformer()
-
Uses of TupleTransformer in org.hibernate.query
Subinterfaces of TupleTransformer in org.hibernate.query Modifier and Type Interface Description interface
TypedTupleTransformer<T>
Extension to TupleTransformer exposing the transformation target type.Methods in org.hibernate.query with parameters of type TupleTransformer Modifier and Type Method Description <R> NativeQuery<R>
NativeQuery. setTupleTransformer(TupleTransformer<R> transformer)
<T> Query<T>
Query. setTupleTransformer(TupleTransformer<T> transformer)
Set aTupleTransformer
. -
Uses of TupleTransformer in org.hibernate.query.hql.spi
Methods in org.hibernate.query.hql.spi with parameters of type TupleTransformer Modifier and Type Method Description <T> SqmQueryImplementor<T>
SqmQueryImplementor. setTupleTransformer(TupleTransformer<T> transformer)
-
Uses of TupleTransformer in org.hibernate.query.internal
Methods in org.hibernate.query.internal that return TupleTransformer Modifier and Type Method Description TupleTransformer<?>
QueryOptionsImpl. getTupleTransformer()
Methods in org.hibernate.query.internal with parameters of type TupleTransformer Modifier and Type Method Description void
QueryOptionsImpl. setTupleTransformer(TupleTransformer<?> transformer)
-
Uses of TupleTransformer in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return TupleTransformer Modifier and Type Method Description TupleTransformer<?>
DelegatingQueryOptions. getTupleTransformer()
@Nullable TupleTransformer<?>
QueryOptions. getTupleTransformer()
Transformer applied to the query to transform the structure of each "row" in the resultsTupleTransformer<?>
QueryOptionsAdapter. getTupleTransformer()
Methods in org.hibernate.query.spi with parameters of type TupleTransformer Modifier and Type Method Description boolean
AbstractCommonQueryContract. applyTupleTransformer(TupleTransformer<?> transformer)
<T> QueryImplementor<T>
AbstractQuery. setTupleTransformer(TupleTransformer<T> transformer)
void
MutableQueryOptions. setTupleTransformer(TupleTransformer<?> transformer)
<T> QueryImplementor<T>
QueryImplementor. setTupleTransformer(TupleTransformer<T> transformer)
-
Uses of TupleTransformer in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type TupleTransformer Modifier and Type Method Description <T> NativeQueryImplementor<T>
NativeQueryImpl. setTupleTransformer(TupleTransformer<T> transformer)
-
Uses of TupleTransformer in org.hibernate.query.sql.spi
Methods in org.hibernate.query.sql.spi with parameters of type TupleTransformer Modifier and Type Method Description <T> NativeQueryImplementor<T>
NativeQueryImplementor. setTupleTransformer(TupleTransformer<T> transformer)
Constructors in org.hibernate.query.sql.spi with parameters of type TupleTransformer Constructor Description SelectInterpretationsKey(String sql, JdbcValuesMappingProducer jdbcValuesMappingProducer, Collection<String> querySpaces, TupleTransformer tupleTransformer, ResultListTransformer resultListTransformer)
-
Uses of TupleTransformer in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type TupleTransformer Modifier and Type Method Description <T> SqmQueryImplementor<T>
QuerySqmImpl. setTupleTransformer(TupleTransformer<T> transformer)
-
Uses of TupleTransformer in org.hibernate.sql.results.internal
Constructors in org.hibernate.sql.results.internal with parameters of type TupleTransformer Constructor Description RowTransformerTupleTransformerAdapter(String[] aliases, TupleTransformer<T> tupleTransformer)
-
Uses of TupleTransformer in org.hibernate.transform
Subinterfaces of TupleTransformer in org.hibernate.transform Modifier and Type Interface Description interface
ResultTransformer<T>
Deprecated.UseTupleTransformer
and/orResultListTransformer
insteadClasses in org.hibernate.transform that implement TupleTransformer Modifier and Type Class Description class
AliasToBeanConstructorResultTransformer<T>
Deprecated.sinceResultTransformer
is deprecatedclass
AliasToBeanResultTransformer<T>
Deprecated.sinceResultTransformer
is deprecatedclass
AliasToEntityMapResultTransformer
Deprecated.sinceResultTransformer
is deprecatedclass
ToListResultTransformer
Deprecated.sinceResultTransformer
is deprecated
-