Uses of Interface
org.hibernate.query.ResultListTransformer
-
Packages that use ResultListTransformer Package Description org.hibernate.jpa.spi org.hibernate.loader.ast.internal org.hibernate.query org.hibernate.query.hql.spi org.hibernate.query.internal org.hibernate.query.spi org.hibernate.query.sql.internal org.hibernate.query.sql.spi org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.transform -
-
Uses of ResultListTransformer in org.hibernate.jpa.spi
Classes in org.hibernate.jpa.spi that implement ResultListTransformer Modifier and Type Class Description class
NativeQueryTupleTransformer
ResultTransformer adapter for handling Tuple 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 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()
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 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>
Wraps the tuples in a constructor call.class
AliasToBeanResultTransformer<T>
Result transformer that allows to transform a result to a user specified class which will be populated via setter methods or fields matching the alias names.class
AliasToEntityMapResultTransformer
ResultTransformer
implementation which builds a map for each "row", made up of each aliased value where the alias is the map key.class
ToListResultTransformer
Transforms each result row from a tuple into aList
whose elements are each tuple value
-