@PublicEvolving public final class UnresolvedCallExpression extends Object implements Expression
FunctionDefinition
.
This is purely an API facing expression with unvalidated arguments and unknown output data type.
A unresolved call contains:
FunctionDefinition
that identifies the function to be called
FunctionIdentifier
that tracks the origin of a function
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<FunctionIdentifier> |
getFunctionIdentifier() |
int |
hashCode() |
UnresolvedCallExpression |
replaceArgs(List<Expression> args) |
CallExpression |
resolve(List<ResolvedExpression> args,
DataType dataType) |
String |
toString() |
public Optional<FunctionIdentifier> getFunctionIdentifier()
public FunctionDefinition getFunctionDefinition()
public UnresolvedCallExpression replaceArgs(List<Expression> args)
public CallExpression resolve(List<ResolvedExpression> args, DataType dataType)
public String asSummaryString()
Expression
asSummaryString
in interface Expression
public List<Expression> getChildren()
getChildren
in interface Expression
public <R> R accept(ExpressionVisitor<R> visitor)
accept
in interface Expression
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.