Package nablarch.core.util.map
Class MapWrapper<K,V>
java.lang.Object
java.util.AbstractMap<K,V>
nablarch.core.util.map.MapWrapper<K,V>
- Type Parameters:
K
- キーの型V
- 値の型
- All Implemented Interfaces:
Map<K,
V>
- Direct Known Subclasses:
AttributeMap
,ByteArrayAwareMap
,CaseInsensitiveMap
,CopyOnReadMap
,HttpCookie
,LockableMap
,MultipleKeyCaseMap
,PartInfoHolder
Map
を実装するクラスの、ラッパークラスを作成するための抽象クラス。
サブクラスでgetDelegateMap()
を実装することで、任意のMapに処理を委譲できる。-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,
V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
boolean
containsKey
(Object key) boolean
containsValue
(Object value) entrySet()
boolean
このラッパーが処理を委譲するMap
オブジェクトを返す。<T> T
getDelegateMapOfType
(Class<T> mapType) このインスタンスが処理を委譲しているMapのうち、 指定した型のものを返す。int
hashCode()
boolean
isEmpty()
keySet()
void
int
size()
toString()
values()
Methods inherited from class java.util.AbstractMap
clone
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
MapWrapper
public MapWrapper()
-
-
Method Details
-
getDelegateMap
このラッパーが処理を委譲するMap
オブジェクトを返す。- Returns:
- 処理を委譲するMapオブジェクト
-
getDelegateMapOfType
このインスタンスが処理を委譲しているMapのうち、 指定した型のものを返す。- Type Parameters:
T
- 取得したいMapの型- Parameters:
mapType
- 取得したいMapの型- Returns:
- 指定した型に適合するMapインスタンス
-
clear
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
containsKey
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。- Specified by:
containsKey
in interfaceMap<K,
V> - Overrides:
containsKey
in classAbstractMap<K,
V>
-
containsValue
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。- Specified by:
containsValue
in interfaceMap<K,
V> - Overrides:
containsValue
in classAbstractMap<K,
V>
-
entrySet
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
get
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
isEmpty
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
keySet
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
put
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
putAll
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
remove
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
size
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
values
getDelegateMap()
が返すMap
オブジェクトに処理を委譲する。 -
equals
-
hashCode
public int hashCode() -
toString
- Overrides:
toString
in classAbstractMap<K,
V>
-