Interface FunctionExpression
-
- All Superinterfaces:
Expression
,SqlAstNode
,SqlSelectionProducer
- All Known Subinterfaces:
AggregateFunctionExpression
,OrderedSetAggregateFunctionExpression
,WindowFunctionExpression
- All Known Implementing Classes:
SelfRenderingAggregateFunctionSqlAstExpression
,SelfRenderingFunctionSqlAstExpression
,SelfRenderingOrderedSetAggregateFunctionSqlAstExpression
,SelfRenderingWindowFunctionSqlAstExpression
public interface FunctionExpression extends Expression
Models a function expression at the SQL AST level.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends SqlAstNode>
getArguments()
String
getFunctionName()
-
Methods inherited from interface org.hibernate.sql.ast.tree.expression.Expression
createDomainResultSqlSelection, createDomainResultSqlSelection, createSqlSelection, createSqlSelection, getColumnReference, getExpressionType
-
Methods inherited from interface org.hibernate.sql.ast.tree.SqlAstNode
accept
-
-
-
-
Method Detail
-
getFunctionName
String getFunctionName()
-
getArguments
List<? extends SqlAstNode> getArguments()
-
-