@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| Constructor and Description |
|---|
CallExpression(FunctionDefinition functionDefinition,
List<ResolvedExpression> args,
DataType dataType) |
CallExpression(ObjectIdentifier objectIdentifier,
FunctionDefinition functionDefinition,
List<ResolvedExpression> args,
DataType dataType) |
| Modifier and Type | Method and Description |
|---|---|
<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<ObjectIdentifier> |
getObjectIdentifier() |
DataType |
getOutputDataType()
Returns the data type of the computation result.
|
List<ResolvedExpression> |
getResolvedChildren() |
int |
hashCode() |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitasSerializableStringpublic CallExpression(ObjectIdentifier objectIdentifier, FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)
public CallExpression(FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)
public Optional<ObjectIdentifier> getObjectIdentifier()
public FunctionDefinition getFunctionDefinition()
public DataType getOutputDataType()
ResolvedExpressiongetOutputDataType in interface ResolvedExpressionpublic List<ResolvedExpression> getResolvedChildren()
getResolvedChildren in interface ResolvedExpressionpublic String asSummaryString()
ExpressionasSummaryString in interface Expressionpublic List<Expression> getChildren()
getChildren in interface Expressionpublic <R> R accept(ExpressionVisitor<R> visitor)
accept in interface ExpressionCopyright © 2014–2019 The Apache Software Foundation. All rights reserved.