@PublicEvolving public final class CallExpression extends Object implements ResolvedExpression
A call contains:
FunctionDefinition that identifies the function to be calledObjectIdentifier that tracks the origin of a function| 构造器和说明 |
|---|
CallExpression(FunctionDefinition functionDefinition,
List<ResolvedExpression> args,
DataType dataType) |
CallExpression(FunctionIdentifier functionIdentifier,
FunctionDefinition functionDefinition,
List<ResolvedExpression> args,
DataType dataType) |
| 限定符和类型 | 方法和说明 |
|---|---|
<R> R |
accept(ExpressionVisitor<R> visitor) |
String |
asSummaryString()
Returns a string that summarizes this expression for printing to a console.
|
boolean |
equals(Object o) |
List<Expression> |
getChildren() |
FunctionDefinition |
getFunctionDefinition() |
Optional<FunctionIdentifier> |
getFunctionIdentifier() |
DataType |
getOutputDataType()
Returns the data type of the computation result.
|
List<ResolvedExpression> |
getResolvedChildren() |
int |
hashCode() |
String |
toString() |
asSerializableStringpublic CallExpression(FunctionIdentifier functionIdentifier, FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)
public CallExpression(FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)
public Optional<FunctionIdentifier> getFunctionIdentifier()
public FunctionDefinition getFunctionDefinition()
public DataType getOutputDataType()
ResolvedExpressiongetOutputDataType 在接口中 ResolvedExpressionpublic List<ResolvedExpression> getResolvedChildren()
getResolvedChildren 在接口中 ResolvedExpressionpublic String asSummaryString()
ExpressionasSummaryString 在接口中 Expressionpublic List<Expression> getChildren()
getChildren 在接口中 Expressionpublic <R> R accept(ExpressionVisitor<R> visitor)
accept 在接口中 ExpressionCopyright © 2014–2020 The Apache Software Foundation. All rights reserved.