| Constructor and Description |
|---|
PersistentMap(org.onosproject.store.service.Serializer serializer,
org.mapdb.DB database,
String name) |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
boolean |
equals(Object map) |
V |
get(Object key) |
int |
hashCode() |
boolean |
isEmpty() |
Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> m) |
void |
readInto(Map<K,V> items)
Reads this set in deserialized form into the provided map.
|
V |
remove(Object key) |
int |
size() |
Collection<V> |
values() |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllpublic PersistentMap(org.onosproject.store.service.Serializer serializer,
org.mapdb.DB database,
String name)
public void readInto(Map<K,V> items)
items - the map to be populatedpublic boolean containsKey(Object key)
containsKey in interface Map<K,V>public boolean containsValue(Object value)
containsValue in interface Map<K,V>public boolean equals(Object map)