Package org.apache.flink.formats.common
Interface Converter<From,To,C>
-
- Type Parameters:
From- The type of the element to be converted.To- The output type.C- The context for passing optional conversion instructions.
- All Superinterfaces:
Serializable
@PublicEvolving public interface Converter<From,To,C> extends Serializable
A generic interface for converting data types.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Toconvert(From source, C context)Converts elements of typeFrominto elements of typeTo.
-