Uses of Interface
org.hibernate.sql.results.graph.DomainResultAssembler
-
-
Uses of DomainResultAssembler in org.hibernate.metamodel.mapping
Method parameters in org.hibernate.metamodel.mapping with type arguments of type DomainResultAssembler Modifier and Type Method Description default Object[]
EntityMappingType. extractConcreteTypeStateValues(Map<AttributeMapping,DomainResultAssembler> assemblerMapping, RowProcessingState rowProcessingState)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of DomainResultAssembler in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<Object[]>
CompoundNaturalIdMapping.DomainResultImpl. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler
ToOneAttributeMapping.NullDomainResult. createResultAssembler(InitializerParent parent, AssemblerCreationState creationState)
-
Uses of DomainResultAssembler in org.hibernate.query.results.complete
Methods in org.hibernate.query.results.complete that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<?>
EntityResultImpl. createResultAssembler(InitializerParent parent, AssemblerCreationState creationState)
-
Uses of DomainResultAssembler in org.hibernate.query.sqm.sql.internal
Methods in org.hibernate.query.sqm.sql.internal that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<R>
SqmMapEntryResult. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
-
Uses of DomainResultAssembler in org.hibernate.sql.results.graph
Classes in org.hibernate.sql.results.graph that implement DomainResultAssembler Modifier and Type Class Description class
UnfetchedBasicPartResultAssembler<J>
class
UnfetchedResultAssembler<J>
Methods in org.hibernate.sql.results.graph that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<?>
Fetch. createAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
Create the assembler for this fetchDomainResultAssembler<J>
DomainResult. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
Create an assembler (and any initializers) for this result. -
Uses of DomainResultAssembler in org.hibernate.sql.results.graph.basic
Classes in org.hibernate.sql.results.graph.basic that implement DomainResultAssembler Modifier and Type Class Description class
BasicResultAssembler<J>
class
CoercingResultAssembler<J>
ABasicResultAssembler
which does type coercion to handle cases where the expression type and the expected resultJavaType
are different (e.g.Methods in org.hibernate.sql.results.graph.basic that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<T>
BasicFetch. createAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
BasicFetch. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
BasicResult. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
BasicResult. getAssembler()
For testing purposes only -
Uses of DomainResultAssembler in org.hibernate.sql.results.graph.collection.internal
Classes in org.hibernate.sql.results.graph.collection.internal that implement DomainResultAssembler Modifier and Type Class Description class
CollectionAssembler
class
UnfetchedCollectionAssembler
Fields in org.hibernate.sql.results.graph.collection.internal declared as DomainResultAssembler Modifier and Type Field Description protected @Nullable DomainResultAssembler<?>
AbstractCollectionInitializer. collectionKeyResultAssembler
refers to the collection's container value - which collection-key?protected @Nullable DomainResultAssembler<?>
AbstractImmediateCollectionInitializer. collectionValueKeyResultAssembler
refers to the rows entry in the collection. -
Uses of DomainResultAssembler in org.hibernate.sql.results.graph.embeddable.internal
Classes in org.hibernate.sql.results.graph.embeddable.internal that implement DomainResultAssembler Modifier and Type Class Description class
EmbeddableAssembler
Fields in org.hibernate.sql.results.graph.embeddable.internal declared as DomainResultAssembler Modifier and Type Field Description protected DomainResultAssembler<?>[][]
EmbeddableInitializerImpl. assemblers
Methods in org.hibernate.sql.results.graph.embeddable.internal that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler
AggregateEmbeddableFetchImpl. createAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<?>
EmbeddableFetchImpl. createAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
AggregateEmbeddableResultImpl. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
EmbeddableExpressionResultImpl. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
EmbeddableForeignKeyResultImpl. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
EmbeddableResultImpl. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
-
Uses of DomainResultAssembler in org.hibernate.sql.results.graph.entity.internal
Classes in org.hibernate.sql.results.graph.entity.internal that implement DomainResultAssembler Modifier and Type Class Description class
EntityAssembler
Fields in org.hibernate.sql.results.graph.entity.internal declared as DomainResultAssembler Modifier and Type Field Description protected DomainResultAssembler<?>
EntitySelectFetchInitializer. keyAssembler
-
Uses of DomainResultAssembler in org.hibernate.sql.results.graph.instantiation.internal
Classes in org.hibernate.sql.results.graph.instantiation.internal that implement DomainResultAssembler Modifier and Type Class Description class
ArgumentReader<A>
Specialized QueryResultAssembler for use as a "reader" for dynamic- instantiation arguments.class
DynamicInstantiationAssemblerConstructorImpl<R>
class
DynamicInstantiationAssemblerInjectionImpl<T>
class
DynamicInstantiationAssemblerListImpl
A QueryResultAssembler implementation representing handling for dynamic- instantiations targeting a List (per-"row"), E.g.`select new list( pers.name, pers.dateOfBirth ) ...`class
DynamicInstantiationAssemblerMapImpl
A QueryResultAssembler implementation representing handling for dynamic- instantiations targeting a Map, e.g.`select new map( pers.name, pers.dateOfBirth ) ...`Methods in org.hibernate.sql.results.graph.instantiation.internal that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<R>
DynamicInstantiationResultImpl. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler
BeanInjection. getValueAssembler()
Constructors in org.hibernate.sql.results.graph.instantiation.internal with parameters of type DomainResultAssembler Constructor Description ArgumentReader(DomainResultAssembler<A> delegateAssembler, String alias)
BeanInjection(org.hibernate.sql.results.graph.instantiation.internal.BeanInjector beanInjector, DomainResultAssembler valueAssembler)
-
Uses of DomainResultAssembler in org.hibernate.sql.results.graph.tuple
Classes in org.hibernate.sql.results.graph.tuple that implement DomainResultAssembler Modifier and Type Class Description class
TupleResultAssembler<J>
Methods in org.hibernate.sql.results.graph.tuple that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<T>
TupleResult. createResultAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<T>
TupleResult. getAssembler()
For testing purposes only -
Uses of DomainResultAssembler in org.hibernate.sql.results.internal
Classes in org.hibernate.sql.results.internal that implement DomainResultAssembler Modifier and Type Class Description class
NullValueAssembler<J>
Constructors in org.hibernate.sql.results.internal with parameters of type DomainResultAssembler Constructor Description StandardRowReader(DomainResultAssembler<?>[] resultAssemblers, Initializer<?>[] resultInitializers, Initializer<?>[] initializers, Initializer<?>[] sortedForResolveInitializers, boolean hasCollectionInitializers, RowTransformer<T> rowTransformer, Class<T> domainResultJavaType)
-
Uses of DomainResultAssembler in org.hibernate.sql.results.internal.domain
Methods in org.hibernate.sql.results.internal.domain that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler
CircularBiDirectionalFetchImpl. createAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
DomainResultAssembler<?>
CircularFetchImpl. createAssembler(InitializerParent<?> parent, AssemblerCreationState creationState)
-
Uses of DomainResultAssembler in org.hibernate.sql.results.jdbc.internal
Methods in org.hibernate.sql.results.jdbc.internal that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<?>[]
JdbcValuesMappingResolutionImpl. getDomainResultAssemblers()
Constructors in org.hibernate.sql.results.jdbc.internal with parameters of type DomainResultAssembler Constructor Description JdbcValuesMappingResolutionImpl(DomainResultAssembler<?>[] domainResultAssemblers, boolean hasCollectionInitializers, InitializersList initializersList)
-
Uses of DomainResultAssembler in org.hibernate.sql.results.jdbc.spi
Methods in org.hibernate.sql.results.jdbc.spi that return DomainResultAssembler Modifier and Type Method Description DomainResultAssembler<?>[]
JdbcValuesMappingResolution. getDomainResultAssemblers()
-