Class OperatorInformation<OUT>
- java.lang.Object
-
- org.apache.flink.api.common.operators.OperatorInformation<OUT>
-
- Type Parameters:
OUT
- Output type of the records output by the operator described by this information
- Direct Known Subclasses:
BinaryOperatorInformation
,UnaryOperatorInformation
@Internal public class OperatorInformation<OUT> extends Object
A class for holding information about an operator, such as input/output TypeInformation.
-
-
Field Summary
Fields Modifier and Type Field Description protected TypeInformation<OUT>
outputType
Output type of the operator
-
Constructor Summary
Constructors Constructor Description OperatorInformation(TypeInformation<OUT> outputType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypeInformation<OUT>
getOutputType()
Gets the return type of the user code function.String
toString()
-
-
-
Field Detail
-
outputType
protected final TypeInformation<OUT> outputType
Output type of the operator
-
-
Constructor Detail
-
OperatorInformation
public OperatorInformation(TypeInformation<OUT> outputType)
- Parameters:
outputType
- The output type of the operator
-
-
Method Detail
-
getOutputType
public TypeInformation<OUT> getOutputType()
Gets the return type of the user code function.
-
-