Class SqlTuple
- java.lang.Object
-
- org.hibernate.sql.ast.tree.expression.SqlTuple
-
- All Implemented Interfaces:
org.hibernate.query.sqm.sql.internal.DomainResultProducer,SqlSelectionProducer,Expression,SqlTupleContainer,SqlAstNode,Assignable
public class SqlTuple extends Object implements Expression, SqlTupleContainer, org.hibernate.query.sqm.sql.internal.DomainResultProducer, Assignable
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSqlTuple.Builder
-
Constructor Summary
Constructors Constructor Description SqlTuple(List<? extends Expression> expressions, MappingModelExpressible valueMapping)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(SqlAstWalker sqlTreeWalker)voidapplySqlSelections(DomainResultCreationState creationState)DomainResultcreateDomainResult(String resultVariable, DomainResultCreationState creationState)List<ColumnReference>getColumnReferences()List<? extends Expression>getExpressions()MappingModelExpressiblegetExpressionType()The type for this expressionSqlTuplegetSqlTuple()-
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.update.Assignable
visitColumnReferences
-
Methods inherited from interface org.hibernate.sql.ast.tree.expression.Expression
createDomainResultSqlSelection, createSqlSelection, getColumnReference
-
-
-
-
Constructor Detail
-
SqlTuple
public SqlTuple(List<? extends Expression> expressions, MappingModelExpressible valueMapping)
-
-
Method Detail
-
getExpressionType
public MappingModelExpressible getExpressionType()
Description copied from interface:ExpressionThe type for this expression- Specified by:
getExpressionTypein interfaceExpression
-
getExpressions
public List<? extends Expression> getExpressions()
-
getColumnReferences
public List<ColumnReference> getColumnReferences()
- Specified by:
getColumnReferencesin interfaceAssignable
-
accept
public void accept(SqlAstWalker sqlTreeWalker)
- Specified by:
acceptin interfaceSqlAstNode
-
getSqlTuple
public SqlTuple getSqlTuple()
- Specified by:
getSqlTuplein interfaceSqlTupleContainer
-
createDomainResult
public DomainResult createDomainResult(String resultVariable, DomainResultCreationState creationState)
- Specified by:
createDomainResultin interfaceorg.hibernate.query.sqm.sql.internal.DomainResultProducer
-
applySqlSelections
public void applySqlSelections(DomainResultCreationState creationState)
- Specified by:
applySqlSelectionsin interfaceorg.hibernate.query.sqm.sql.internal.DomainResultProducer
-
-