Class StateMapView<N,EK,EV>
- java.lang.Object
-
- org.apache.flink.table.api.dataview.MapView<EK,EV>
-
- org.apache.flink.table.runtime.dataview.StateMapView<N,EK,EV>
-
- Type Parameters:
N- the type of namespaceEK- the external type of theMapViewkeyEV- the external type of theMapViewvalue
- All Implemented Interfaces:
org.apache.flink.table.api.dataview.DataView,StateDataView<N>
- Direct Known Subclasses:
StateMapView.KeyedStateMapViewWithKeysNotNull,StateMapView.KeyedStateMapViewWithKeysNullable,StateMapView.NamespacedStateMapViewWithKeysNotNull,StateMapView.NamespacedStateMapViewWithKeysNullable
@Internal public abstract class StateMapView<N,EK,EV> extends org.apache.flink.table.api.dataview.MapView<EK,EV> implements StateDataView<N>
MapViewwhich is implemented using state backends.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStateMapView.KeyedStateMapViewWithKeysNotNull<N,EK,EV>A stateMapViewwhich does not support nullable keys and namespace.static classStateMapView.KeyedStateMapViewWithKeysNullable<N,EK,EV>A stateMapViewwhich supports nullable keys but does not support namespace.static classStateMapView.NamespacedStateMapViewWithKeysNotNull<N,EK,EV>A stateMapViewwhich supports namespace but does not support nullable keys.static classStateMapView.NamespacedStateMapViewWithKeysNullable<N,EK,EV>A stateMapViewwhich supports nullable keys and namespace.
-
Constructor Summary
Constructors Constructor Description StateMapView()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<EK,EV>getMap()voidsetMap(Map<EK,EV> map)-
Methods inherited from class org.apache.flink.table.api.dataview.MapView
clear, contains, entries, equals, get, hashCode, isEmpty, iterator, keys, newMapViewDataType, put, putAll, remove, values
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.runtime.dataview.StateDataView
setCurrentNamespace
-
-