Class FederationExpression
- java.lang.Object
-
- com.amazonaws.athena.connector.lambda.domain.predicate.expression.FederationExpression
-
- Direct Known Subclasses:
ConstantExpression
,FunctionCallExpression
,VariableExpression
public abstract class FederationExpression extends Object
-
-
Constructor Summary
Constructors Constructor Description FederationExpression(org.apache.arrow.vector.types.pojo.ArrowType type)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract boolean
equals(Object obj)
abstract List<? extends FederationExpression>
getChildren()
org.apache.arrow.vector.types.pojo.ArrowType
getType()
abstract int
hashCode()
abstract String
toString()
-
-
-
Method Detail
-
getType
public org.apache.arrow.vector.types.pojo.ArrowType getType()
-
getChildren
public abstract List<? extends FederationExpression> getChildren()
-
-