Package org.apache.flink.table.dataview
Class MapViewTypeInfoFactory<K,V>
- java.lang.Object
-
- org.apache.flink.api.common.typeinfo.TypeInfoFactory<MapView<K,V>>
-
- org.apache.flink.table.dataview.MapViewTypeInfoFactory<K,V>
-
@Internal @Deprecated public class MapViewTypeInfoFactory<K,V> extends TypeInfoFactory<MapView<K,V>>
Deprecated.TypeInformation factory forMapView
.
-
-
Constructor Summary
Constructors Constructor Description MapViewTypeInfoFactory()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description TypeInformation<MapView<K,V>>
createTypeInfo(Type t, Map<String,TypeInformation<?>> genericParameters)
Deprecated.Creates type information for the type the factory is targeted for.
-
-
-
Method Detail
-
createTypeInfo
public TypeInformation<MapView<K,V>> createTypeInfo(Type t, Map<String,TypeInformation<?>> genericParameters)
Deprecated.Description copied from class:TypeInfoFactory
Creates type information for the type the factory is targeted for. The parameters provide additional information about the type itself as well as the type's generic type parameters.- Specified by:
createTypeInfo
in classTypeInfoFactory<MapView<K,V>>
- Parameters:
t
- the exact type the type information is created for; might also be a subclass of <T>genericParameters
- mapping of the type's generic type parameters to type information extracted with Flink's type extraction facilities; null values indicate that type information could not be extracted for this parameter- Returns:
- type information for the type the factory is targeted for
-
-