public interface LocalMap<K,V>
Modifier and Type | Method and Description |
---|---|
void |
clear() |
void |
close() |
V |
get(K key) |
boolean |
isEmpty() |
Set<K> |
keySet() |
V |
put(K key,
V value) |
V |
putIfAbsent(K key,
V value) |
V |
remove(K key) |
boolean |
removeIfPresent(K key,
V value) |
V |
replace(K key,
V value) |
boolean |
replaceIfPresent(K key,
V oldValue,
V newValue) |
int |
size() |
Collection<V> |
values() |
void clear()
int size()
boolean isEmpty()
void close()
Collection<V> values()
Copyright © 2014. All Rights Reserved.