public class ForwardingMap<K,V> extends Object implements Map<K,V>, Delegatable<Map<K,V>>
| 构造器和说明 |
|---|
ForwardingMap() |
ForwardingMap(Map<K,V> delegate) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
V |
get(Object key) |
Map<K,V> |
getDelegate() |
boolean |
isEmpty() |
Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> m) |
V |
remove(Object key) |
void |
setDelegate(Map<K,V> delegate) |
int |
size() |
Collection<V> |
values() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAllpublic Map<K,V> getDelegate()
getDelegate 在接口中 Delegatable<Map<K,V>>public void setDelegate(Map<K,V> delegate)
setDelegate 在接口中 Delegatable<Map<K,V>>public boolean containsKey(Object key)
containsKey 在接口中 Map<K,V>public boolean containsValue(Object value)
containsValue 在接口中 Map<K,V>Copyright © 2021. All rights reserved.