Class EmbeddableValuedExpression<T>
- java.lang.Object
-
- org.hibernate.query.sqm.sql.internal.EmbeddableValuedExpression<T>
-
- All Implemented Interfaces:
DomainResultProducer<T>,SqlSelectionProducer,Expression,SqlTupleContainer,SqlAstNode,Assignable
public class EmbeddableValuedExpression<T> extends Object implements Expression, DomainResultProducer<T>, Assignable, SqlTupleContainer
A computed expression that produces an embeddable valued model part. It may only be composed of basic attribute mappings.
-
-
Constructor Summary
Constructors Constructor Description EmbeddableValuedExpression(NavigablePath baseNavigablePath, EmbeddableValuedModelPart mapping, SqlTuple sqlExpression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(SqlAstWalker sqlTreeWalker)voidapplySqlSelections(DomainResultCreationState creationState)Used when this producer is a selection in a sub-query.DomainResult<T>createDomainResult(String resultVariable, DomainResultCreationState creationState)Produce the domain queryList<ColumnReference>getColumnReferences()ModelPartgetExpressionType()The type for this expressionSqlTuplegetSqlTuple()voidvisitColumnReferences(Consumer<ColumnReference> columnReferenceConsumer)-
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.ast.tree.expression.Expression
createDomainResultSqlSelection, createDomainResultSqlSelection, createSqlSelection, createSqlSelection, getColumnReference
-
-
-
-
Constructor Detail
-
EmbeddableValuedExpression
public EmbeddableValuedExpression(NavigablePath baseNavigablePath, EmbeddableValuedModelPart mapping, SqlTuple sqlExpression)
-
-
Method Detail
-
getExpressionType
public ModelPart getExpressionType()
Description copied from interface:ExpressionThe type for this expression- Specified by:
getExpressionTypein interfaceExpression
-
createDomainResult
public DomainResult<T> createDomainResult(String resultVariable, DomainResultCreationState creationState)
Description copied from interface:DomainResultProducerProduce the domain query- Specified by:
createDomainResultin interfaceDomainResultProducer<T>
-
applySqlSelections
public void applySqlSelections(DomainResultCreationState creationState)
Description copied from interface:DomainResultProducerUsed when this producer is a selection in a sub-query. The DomainResult is only needed for root query of a SELECT statement. This default impl assumes this producer is a true (Sql)Expression- Specified by:
applySqlSelectionsin interfaceDomainResultProducer<T>
-
visitColumnReferences
public void visitColumnReferences(Consumer<ColumnReference> columnReferenceConsumer)
- Specified by:
visitColumnReferencesin interfaceAssignable
-
getColumnReferences
public List<ColumnReference> getColumnReferences()
- Specified by:
getColumnReferencesin interfaceAssignable
-
getSqlTuple
public SqlTuple getSqlTuple()
- Specified by:
getSqlTuplein interfaceSqlTupleContainer
-
accept
public void accept(SqlAstWalker sqlTreeWalker)
- Specified by:
acceptin interfaceSqlAstNode
-
-