K
- 属性名の型V
- 属性値の型public abstract class AttributeMap<K,V> extends MapWrapper<K,V>
コンストラクタと説明 |
---|
AttributeMap() |
修飾子とタイプ | メソッドと説明 |
---|---|
void |
clear()
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
boolean |
containsKey(java.lang.Object key)
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
boolean |
containsValue(java.lang.Object value)
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
V |
get(java.lang.Object key)
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
abstract V |
getAttribute(K name)
指定した属性名に対応する属性値を取得する。
|
abstract java.util.Enumeration<K> |
getAttributeNames()
属性名のイテレータを取得する。
|
java.util.Map<K,V> |
getDelegateMap()
このラッパーが処理を委譲する
Map オブジェクトを返す。 |
V |
put(K key,
V value)
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
void |
putAll(java.util.Map<? extends K,? extends V> map)
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
V |
remove(java.lang.Object key)
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
abstract void |
removeAttribute(K name)
指定された属性を削除する。
|
abstract void |
setAttribute(K name,
V value)
属性名に対応する属性値を設定する。
|
int |
size()
MapWrapper.getDelegateMap() が返すMap オブジェクトに処理を委譲する。 |
entrySet, equals, getDelegateMapOfType, hashCode, isEmpty, keySet, toString, values
public abstract V getAttribute(K name)
name
- キー名public abstract java.util.Enumeration<K> getAttributeNames()
public abstract void setAttribute(K name, V value)
name
- 属性名value
- 属性値public abstract void removeAttribute(K name)
name
- 削除する属性名public int size()
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。public V get(java.lang.Object key)
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。public V remove(java.lang.Object key)
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。public void putAll(java.util.Map<? extends K,? extends V> map)
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。public V put(K key, V value)
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。public void clear()
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。public boolean containsKey(java.lang.Object key)
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。containsKey
インタフェース内 java.util.Map<K,V>
containsKey
クラス内 MapWrapper<K,V>
public boolean containsValue(java.lang.Object value)
MapWrapper.getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。containsValue
インタフェース内 java.util.Map<K,V>
containsValue
クラス内 MapWrapper<K,V>
public java.util.Map<K,V> getDelegateMap()
Map
オブジェクトを返す。getDelegateMap
クラス内 MapWrapper<K,V>