static class MapMaker.NullConcurrentMap<K,V>
extends java.util.AbstractMap<K,V>
implements java.util.concurrent.ConcurrentMap<K,V>, java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
private MapMaker.RemovalCause |
removalCause |
private MapMaker.RemovalListener<K,V> |
removalListener |
private static long |
serialVersionUID |
| Constructor and Description |
|---|
NullConcurrentMap(MapMaker mapMaker) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(java.lang.Object key) |
boolean |
containsValue(java.lang.Object value) |
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet() |
V |
get(java.lang.Object key) |
(package private) void |
notifyRemoval(K key,
V value) |
V |
put(K key,
V value) |
V |
putIfAbsent(K key,
V value) |
V |
remove(java.lang.Object key) |
boolean |
remove(java.lang.Object key,
java.lang.Object value) |
V |
replace(K key,
V value) |
boolean |
replace(K key,
V oldValue,
V newValue) |
clear, clone, equals, hashCode, isEmpty, keySet, putAll, size, toString, valuesfinalize, getClass, notify, notifyAll, wait, wait, waitprivate static final long serialVersionUID
private final MapMaker.RemovalListener<K,V> removalListener
private final MapMaker.RemovalCause removalCause
NullConcurrentMap(MapMaker mapMaker)
public boolean containsKey(@Nullable
java.lang.Object key)
public boolean containsValue(@Nullable
java.lang.Object value)
public V get(@Nullable java.lang.Object key)
public V remove(@Nullable java.lang.Object key)
public boolean remove(@Nullable
java.lang.Object key,
@Nullable
java.lang.Object value)