K - Key to use for gathering information.V - Value to fetch, that is a generic method.public interface ReadWriteSetStore<K,V> extends ReadOnlyStore<K,V>
| Modifier and Type | Method and Description |
|---|---|
default void |
put(V value) |
void |
putAll(Collection<V> values) |
default void |
remove(K key)
Remove the key value pair from the store.
|
void |
removeAll(Collection<K> keys)
Remove the values for the given keys.
|
containsKey, get, getAll, keys, sizevoid putAll(@Nonnull Collection<V> values)
values - Put all key value pairs form this map into the storage.void removeAll(Collection<K> keys)
keys - Map of removed key value pairs.Copyright © 2015–2020 morimekta.net. All rights reserved.