Class SqmMapEntryResult<K,V,R extends Map.Entry<K,V>>
- java.lang.Object
-
- org.hibernate.query.sqm.sql.internal.SqmMapEntryResult<K,V,R>
-
- All Implemented Interfaces:
DomainResult<R>
,DomainResultGraphNode
public class SqmMapEntryResult<K,V,R extends Map.Entry<K,V>> extends Object implements DomainResult<R>
-
-
Constructor Summary
Constructors Constructor Description SqmMapEntryResult(DomainResult<K> keyResult, DomainResult<V> valueResult, String alias, JavaType<R> javaType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DomainResultAssembler<R>
createResultAssembler(FetchParentAccess parentAccess, AssemblerCreationState creationState)
Create an assembler (and any initializers) for this result.JavaType<R>
getResultJavaType()
String
getResultVariable()
The result-variable (alias) associated with this result.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.results.graph.DomainResultGraphNode
appliesTo, containsAnyNonScalarResults, getNavigablePath
-
-
-
-
Constructor Detail
-
SqmMapEntryResult
public SqmMapEntryResult(DomainResult<K> keyResult, DomainResult<V> valueResult, String alias, JavaType<R> javaType)
-
-
Method Detail
-
getResultVariable
public String getResultVariable()
Description copied from interface:DomainResult
The result-variable (alias) associated with this result.- Specified by:
getResultVariable
in interfaceDomainResult<K>
-
createResultAssembler
public DomainResultAssembler<R> createResultAssembler(FetchParentAccess parentAccess, AssemblerCreationState creationState)
Description copied from interface:DomainResult
Create an assembler (and any initializers) for this result.- Specified by:
createResultAssembler
in interfaceDomainResult<K>
-
getResultJavaType
public JavaType<R> getResultJavaType()
- Specified by:
getResultJavaType
in interfaceDomainResultGraphNode
-
-