Class AbstractIterableGetMapDecorator<K,V>
- java.lang.Object
-
- org.apache.commons.collections4.splitmap.AbstractIterableGetMapDecorator<K,V>
-
- Type Parameters:
K- the type of the keys in this mapV- the type of the values in this map
- All Implemented Interfaces:
Get<K,V>,IterableGet<K,V>
- Direct Known Subclasses:
TransformedSplitMap
public class AbstractIterableGetMapDecorator<K,V> extends Object implements IterableGet<K,V>
- Since:
- 4.0
-
-
Constructor Summary
Constructors Constructor Description AbstractIterableGetMapDecorator(Map<K,V> map)Create a new AbstractSplitMapDecorator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<K,V>>entrySet()booleanequals(Object object)Vget(Object key)inthashCode()booleanisEmpty()Set<K>keySet()MapIterator<K,V>mapIterator()Get a MapIterator over this Get.Vremove(Object key)intsize()StringtoString()Collection<V>values()
-
-
-
Constructor Detail
-
AbstractIterableGetMapDecorator
public AbstractIterableGetMapDecorator(Map<K,V> map)
Create a new AbstractSplitMapDecorator.- Parameters:
map- the map to decorate, must not be null- Throws:
NullPointerException- if map is null
-
-
Method Detail
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceGet<K,V>- Parameters:
key- key whose presence in this map is to be tested- Returns:
trueif this map contains a mapping for the specified key- See Also:
Map.containsKey(Object)
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceGet<K,V>- Parameters:
value- value whose presence in this map is to be tested- Returns:
trueif this map maps one or more keys to the specified value- See Also:
Map.containsValue(Object)
-
entrySet
public Set<Map.Entry<K,V>> entrySet()
- Specified by:
entrySetin interfaceGet<K,V>- Returns:
- a set view of the mappings contained in this map
- See Also:
Map.entrySet()
-
get
public V get(Object key)
- Specified by:
getin interfaceGet<K,V>- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
nullif this map contains no mapping for the key - See Also:
Map.get(Object)
-
remove
public V remove(Object key)
- Specified by:
removein interfaceGet<K,V>- Parameters:
key- key whose mapping is to be removed from the map- Returns:
- the previous value associated with
key, ornullif there was no mapping forkey. - See Also:
Map.remove(Object)
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceGet<K,V>- Returns:
trueif this map contains no key-value mappings- See Also:
Map.isEmpty()
-
keySet
public Set<K> keySet()
- Specified by:
keySetin interfaceGet<K,V>- Returns:
- a set view of the keys contained in this map
- See Also:
Map.keySet()
-
size
public int size()
- Specified by:
sizein interfaceGet<K,V>- Returns:
- the number of key-value mappings in this map
- See Also:
Map.size()
-
values
public Collection<V> values()
- Specified by:
valuesin interfaceGet<K,V>- Returns:
- a collection view of the values contained in this map
- See Also:
Map.values()
-
mapIterator
public MapIterator<K,V> mapIterator()
Get a MapIterator over this Get.- Specified by:
mapIteratorin interfaceIterableGet<K,V>- Returns:
- MapIterator<K, V>
-
-