Package org.apache.flink.runtime.state
Class StateEntry.SimpleStateEntry<K,N,S>
- java.lang.Object
-
- org.apache.flink.runtime.state.StateEntry.SimpleStateEntry<K,N,S>
-
- All Implemented Interfaces:
StateEntry<K,N,S>
- Enclosing interface:
- StateEntry<K,N,S>
public static class StateEntry.SimpleStateEntry<K,N,S> extends Object implements StateEntry<K,N,S>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.runtime.state.StateEntry
StateEntry.SimpleStateEntry<K,N,S>
-
-
Constructor Summary
Constructors Constructor Description SimpleStateEntry(K key, N namespace, S value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description K
getKey()
Returns the key of this entry.N
getNamespace()
Returns the namespace of this entry.S
getState()
Returns the state of this entry.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.runtime.state.StateEntry
filterOrTransform
-
-
-
-
Method Detail
-
getKey
public K getKey()
Description copied from interface:StateEntry
Returns the key of this entry.- Specified by:
getKey
in interfaceStateEntry<K,N,S>
-
getNamespace
public N getNamespace()
Description copied from interface:StateEntry
Returns the namespace of this entry.- Specified by:
getNamespace
in interfaceStateEntry<K,N,S>
-
getState
public S getState()
Description copied from interface:StateEntry
Returns the state of this entry.- Specified by:
getState
in interfaceStateEntry<K,N,S>
-
-