Package org.onosproject.store.primitives
Class ConsistentMapBackedJavaMap<K,V>
- java.lang.Object
-
- org.onosproject.store.primitives.ConsistentMapBackedJavaMap<K,V>
-
- Type Parameters:
K
- key typeV
- value type
- All Implemented Interfaces:
Map<K,V>
public final class ConsistentMapBackedJavaMap<K,V> extends Object implements Map<K,V>
Standard javaMap
backed by aConsistentMap
.
-
-
Constructor Summary
Constructors Constructor Description ConsistentMapBackedJavaMap(ConsistentMap<K,V> backingMap)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
V
compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
V
computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
V
computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<K,V>>
entrySet()
void
forEach(BiConsumer<? super K,? super V> action)
V
get(Object key)
V
getOrDefault(Object key, V defaultValue)
boolean
isEmpty()
Set<K>
keySet()
V
merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
V
put(K key, V value)
void
putAll(Map<? extends K,? extends V> m)
V
putIfAbsent(K key, V value)
V
remove(Object key)
boolean
remove(Object key, Object value)
V
replace(K key, V value)
boolean
replace(K key, V oldValue, V newValue)
int
size()
String
toString()
Collection<V>
values()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
equals, hashCode, replaceAll
-
-
-
-
Constructor Detail
-
ConsistentMapBackedJavaMap
public ConsistentMapBackedJavaMap(ConsistentMap<K,V> backingMap)
-
-
Method Detail
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<K,V>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<K,V>
-
getOrDefault
public V getOrDefault(Object key, V defaultValue)
- Specified by:
getOrDefault
in interfaceMap<K,V>
-
computeIfAbsent
public V computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
- Specified by:
computeIfAbsent
in interfaceMap<K,V>
-
computeIfPresent
public V computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
- Specified by:
computeIfPresent
in interfaceMap<K,V>
-
forEach
public void forEach(BiConsumer<? super K,? super V> action)
-
-