Uses of Interface
org.hibernate.query.TupleTransformer
-
Packages that use TupleTransformer Package Description org.hibernate.jpa.spi org.hibernate.query org.hibernate.query.hql.spi org.hibernate.query.spi org.hibernate.query.sql.spi org.hibernate.transform -
-
Uses of TupleTransformer in org.hibernate.jpa.spi
Classes in org.hibernate.jpa.spi that implement TupleTransformer Modifier and Type Class Description classNativeQueryTupleTransformerResultTransformer adapter for handling Tuple results from Native queries -
Uses of TupleTransformer in org.hibernate.query
Subinterfaces of TupleTransformer in org.hibernate.query Modifier and Type Interface Description interfaceTypedTupleTransformer<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.spi
Methods in org.hibernate.query.spi that return TupleTransformer Modifier and Type Method Description TupleTransformer<?>DelegatingQueryOptions. getTupleTransformer()TupleTransformer<?>QueryOptions. getTupleTransformer()Transformer applied to the query to transform the structure of each "row" in the resultsTupleTransformerQueryOptionsAdapter. getTupleTransformer()Methods in org.hibernate.query.spi with parameters of type TupleTransformer Modifier and Type Method Description booleanAbstractCommonQueryContract. applyTupleTransformer(TupleTransformer<?> transformer)<T> QueryImplementor<T>AbstractQuery. setTupleTransformer(TupleTransformer<T> transformer)voidMutableQueryOptions. setTupleTransformer(TupleTransformer transformer)<T> QueryImplementor<T>QueryImplementor. 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.transform
Subinterfaces of TupleTransformer in org.hibernate.transform Modifier and Type Interface Description interfaceResultTransformer<T>Deprecated.UseTupleTransformerand/orResultListTransformerinsteadClasses in org.hibernate.transform that implement TupleTransformer Modifier and Type Class Description classAliasToBeanConstructorResultTransformer<T>Wraps the tuples in a constructor call.classAliasToBeanResultTransformer<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.classAliasToEntityMapResultTransformerResultTransformerimplementation which builds a map for each "row", made up of each aliased value where the alias is the map key.classToListResultTransformerTransforms each result row from a tuple into aListwhose elements are each tuple value
-