K
- キーの型V
- 値の型public abstract class MapWrapper<K,V>
extends java.util.AbstractMap<K,V>
Map
を実装するクラスの、ラッパークラスを作成するための抽象クラス。
サブクラスで#getDelegateMap()
を実装することで、任意のMapに処理を委譲できる。Modifier and Type | Method and Description |
---|---|
void |
clear()
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
boolean |
containsKey(java.lang.Object key)
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
boolean |
containsValue(java.lang.Object value)
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet()
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
V |
get(java.lang.Object key)
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
boolean |
isEmpty()
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
java.util.Set<K> |
keySet()
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
V |
put(K key,
V value)
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
void |
putAll(java.util.Map<? extends K,? extends V> m)
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
V |
remove(java.lang.Object key)
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
int |
size()
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
java.util.Collection<V> |
values()
#getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
@Published public void clear()
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public boolean containsKey(java.lang.Object key)
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public boolean containsValue(java.lang.Object value)
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public V get(java.lang.Object key)
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public boolean isEmpty()
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public java.util.Set<K> keySet()
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public void putAll(java.util.Map<? extends K,? extends V> m)
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public V remove(java.lang.Object key)
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。@Published public int size()
#getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。