Uses of Interface
org.hibernate.query.ResultListTransformer
-
Packages that use ResultListTransformer Package Description org.hibernate.jpa.spi An SPI for managing cases where, by default, Hibernate intentionally violates the letter of the JPA specification.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.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.spi SPIs for native SQL query support.org.hibernate.transform Defines strategies for post-processing criteria query results into a form convenient to the application. -
-
Uses of ResultListTransformer in org.hibernate.jpa.spi
Classes in org.hibernate.jpa.spi that implement ResultListTransformer Modifier and Type Class Description classNativeQueryTupleTransformerAResultTransformerfor handling JPATupleresults from native queries. -
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.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 booleanAbstractCommonQueryContract. applyResultListTransformer(ResultListTransformer<?> transformer)QueryImplementor<R>AbstractQuery. setResultListTransformer(ResultListTransformer<R> transformer)voidMutableQueryOptions. setResultListTransformer(ResultListTransformer<?> transformer)QueryImplementor<R>QueryImplementor. 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.transform
Subinterfaces of ResultListTransformer in org.hibernate.transform Modifier and Type Interface Description interfaceResultTransformer<T>Deprecated.UseTupleTransformerand/orResultListTransformerinsteadClasses in org.hibernate.transform that implement ResultListTransformer Modifier and Type Class Description classAliasToBeanConstructorResultTransformer<T>Deprecated.sinceResultTransformeris deprecatedclassAliasToBeanResultTransformer<T>Deprecated.sinceResultTransformeris deprecatedclassAliasToEntityMapResultTransformerDeprecated.sinceResultTransformeris deprecatedclassToListResultTransformerDeprecated.sinceResultTransformeris deprecated
-