Class DelegateAbstractMap
-
- All Implemented Interfaces:
-
java.util.Map
public final class DelegateAbstractMap<K, V> extends AbstractMap<K, V>
-
-
Constructor Summary
Constructors Constructor Description DelegateAbstractMap(Map<K, V> delegateMap)
-
Method Summary
Modifier and Type Method Description V
get(Object key)
boolean
containsKey(Object key)
V
put(K key, V value)
V
remove(Object key)
int
size()
Set<K>
keySet()
Set<Map.Entry<K, V>>
entrySet()
-
Methods inherited from class java.util.AbstractMap
clear, containsValue, equals, hashCode, isEmpty, putAll, toString, values
-
Methods inherited from class java.util.Map
compute, computeIfAbsent, computeIfPresent, copyOf, entry, forEach, getOrDefault, merge, of, ofEntries, putIfAbsent, remove, replace, replace, replaceAll
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-