Class LocalReferenceExpression
- java.lang.Object
-
- org.apache.flink.table.expressions.LocalReferenceExpression
-
- All Implemented Interfaces:
org.apache.flink.table.expressions.Expression,org.apache.flink.table.expressions.ResolvedExpression
@Internal public class LocalReferenceExpression extends Object implements org.apache.flink.table.expressions.ResolvedExpression
Reference to entity local to a certainQueryOperation. That entity does not come from any of the Operations input. It might be for example a group window in window aggregation.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(org.apache.flink.table.expressions.ExpressionVisitor<R> visitor)StringasSerializableString()StringasSummaryString()booleanequals(Object o)List<org.apache.flink.table.expressions.Expression>getChildren()StringgetName()org.apache.flink.table.types.DataTypegetOutputDataType()List<org.apache.flink.table.expressions.ResolvedExpression>getResolvedChildren()inthashCode()StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
getOutputDataType
public org.apache.flink.table.types.DataType getOutputDataType()
- Specified by:
getOutputDataTypein interfaceorg.apache.flink.table.expressions.ResolvedExpression
-
getResolvedChildren
public List<org.apache.flink.table.expressions.ResolvedExpression> getResolvedChildren()
- Specified by:
getResolvedChildrenin interfaceorg.apache.flink.table.expressions.ResolvedExpression
-
asSummaryString
public String asSummaryString()
- Specified by:
asSummaryStringin interfaceorg.apache.flink.table.expressions.Expression
-
asSerializableString
public String asSerializableString()
- Specified by:
asSerializableStringin interfaceorg.apache.flink.table.expressions.ResolvedExpression
-
getChildren
public List<org.apache.flink.table.expressions.Expression> getChildren()
- Specified by:
getChildrenin interfaceorg.apache.flink.table.expressions.Expression
-
accept
public <R> R accept(org.apache.flink.table.expressions.ExpressionVisitor<R> visitor)
- Specified by:
acceptin interfaceorg.apache.flink.table.expressions.Expression
-
-