Class FieldFromTuple<OUT>
- java.lang.Object
-
- org.apache.flink.streaming.api.functions.windowing.delta.extractor.FieldFromTuple<OUT>
-
- Type Parameters:
OUT- The type of the extracted field.
- All Implemented Interfaces:
Serializable,Extractor<org.apache.flink.api.java.tuple.Tuple,OUT>
@Internal public class FieldFromTuple<OUT> extends Object implements Extractor<org.apache.flink.api.java.tuple.Tuple,OUT>
Extracts a single field out of a tuple.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FieldFromTuple(int fieldId)Extracts the field with the given id from the tuple.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OUTextract(org.apache.flink.api.java.tuple.Tuple in)Extracts/Converts the given input to an object of the output type.
-