Uses of Interface
org.hibernate.query.ResultListTransformer
-
Packages that use ResultListTransformer 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.transform Defines strategies for post-processing criteria query results into a form convenient to the application. -
-
Uses of ResultListTransformer in org.hibernate.engine.jdbc.mutation.internal
Methods in org.hibernate.engine.jdbc.mutation.internal that return ResultListTransformer Modifier and Type Method Description ResultListTransformer<?>
MutationQueryOptions. getResultListTransformer()
-
Uses of ResultListTransformer in org.hibernate.jpa.spi
Classes in org.hibernate.jpa.spi that implement ResultListTransformer Modifier and Type Class Description class
NativeQueryTupleTransformer
AResultTransformer
for handling JPATuple
results from native queries. -
Uses of ResultListTransformer in org.hibernate.loader.ast.internal
Methods in org.hibernate.loader.ast.internal that return ResultListTransformer Modifier and Type Method Description ResultListTransformer<?>
LoaderSqlAstCreationState. getResultListTransformer()
-
Uses of ResultListTransformer in org.hibernate.query
Methods in org.hibernate.query with parameters of type ResultListTransformer Modifier and Type Method Description NativeQuery<T>
NativeQuery. setResultListTransformer(ResultListTransformer<T> transformer)
Query<R>
Query. setResultListTransformer(ResultListTransformer<R> transformer)
Set aResultListTransformer
. -
Uses of ResultListTransformer in org.hibernate.query.hql.spi
Methods in org.hibernate.query.hql.spi with parameters of type ResultListTransformer Modifier and Type Method Description SqmQueryImplementor<R>
SqmQueryImplementor. setResultListTransformer(ResultListTransformer<R> transformer)
-
Uses of ResultListTransformer in org.hibernate.query.internal
Methods in org.hibernate.query.internal that return ResultListTransformer Modifier and Type Method Description ResultListTransformer<?>
QueryOptionsImpl. getResultListTransformer()
Methods in org.hibernate.query.internal with parameters of type ResultListTransformer Modifier and Type Method Description void
QueryOptionsImpl. setResultListTransformer(ResultListTransformer<?> transformer)
-
Uses of ResultListTransformer in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return ResultListTransformer Modifier and Type Method Description ResultListTransformer<?>
DelegatingQueryOptions. getResultListTransformer()
@Nullable ResultListTransformer<?>
QueryOptions. getResultListTransformer()
Transformer applied to the query to transform the structure of the overall resultsResultListTransformer<?>
QueryOptionsAdapter. getResultListTransformer()
Methods in org.hibernate.query.spi with parameters of type ResultListTransformer Modifier and Type Method Description boolean
AbstractCommonQueryContract. applyResultListTransformer(ResultListTransformer<?> transformer)
QueryImplementor<R>
AbstractQuery. setResultListTransformer(ResultListTransformer<R> transformer)
void
MutableQueryOptions. setResultListTransformer(ResultListTransformer<?> transformer)
QueryImplementor<R>
QueryImplementor. setResultListTransformer(ResultListTransformer<R> transformer)
-
Uses of ResultListTransformer in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type ResultListTransformer Modifier and Type Method Description NativeQueryImplementor<R>
NativeQueryImpl. setResultListTransformer(ResultListTransformer<R> transformer)
-
Uses of ResultListTransformer in org.hibernate.query.sql.spi
Methods in org.hibernate.query.sql.spi with parameters of type ResultListTransformer Modifier and Type Method Description NativeQueryImplementor<R>
NativeQueryImplementor. setResultListTransformer(ResultListTransformer<R> transformer)
Constructors in org.hibernate.query.sql.spi with parameters of type ResultListTransformer Constructor Description SelectInterpretationsKey(String sql, JdbcValuesMappingProducer jdbcValuesMappingProducer, Collection<String> querySpaces, TupleTransformer tupleTransformer, ResultListTransformer resultListTransformer)
-
Uses of ResultListTransformer in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type ResultListTransformer Modifier and Type Method Description SqmQueryImplementor<R>
QuerySqmImpl. setResultListTransformer(ResultListTransformer<R> transformer)
-
Uses of ResultListTransformer in org.hibernate.transform
Subinterfaces of ResultListTransformer in org.hibernate.transform Modifier and Type Interface Description interface
ResultTransformer<T>
Deprecated.UseTupleTransformer
and/orResultListTransformer
insteadClasses in org.hibernate.transform that implement ResultListTransformer 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
-