public class MultiHashMap extends HashMap implements MultiMap
MultiHashMap
is the default implementation of the
MultiMap
interface.
A MultiMap
is a Map with slightly different semantics.
Putting a value into the map will add the value to a Collection at that key.
Getting a value will return a Collection, holding all the values put to that key.
This implementation uses an ArrayList
as the collection.
The internal storage list is made available without cloning via the
get(Object)
and entrySet()
methods.
The implementation returns null
when there are no values mapped to a key.
For example:
MultiMap mhm = new MultiHashMap(); mhm.put(key, "A"); mhm.put(key, "B"); mhm.put(key, "C"); List list = (List) mhm.get(key);
list
will be a list containing "A", "B", "C".
AbstractMap.SimpleEntry, AbstractMap.SimpleImmutableEntry
Constructor and Description |
---|
MultiHashMap()
Deprecated.
Constructor.
|
MultiHashMap(int initialCapacity)
Deprecated.
Constructor.
|
MultiHashMap(int initialCapacity,
float loadFactor)
Deprecated.
Constructor.
|
MultiHashMap(Map mapToCopy)
Deprecated.
Constructor that copies the input map creating an independent copy.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Deprecated.
Clear the map.
|
Object |
clone()
Deprecated.
Clones the map creating an independent copy.
|
boolean |
containsValue(Object value)
Deprecated.
Checks whether the map contains the value specified.
|
boolean |
containsValue(Object key,
Object value)
Deprecated.
Checks whether the collection at the specified key contains the value.
|
protected Collection |
createCollection(Collection coll)
Deprecated.
Creates a new instance of the map value Collection container.
|
Collection |
getCollection(Object key)
Deprecated.
Gets the collection mapped to the specified key.
|
Iterator |
iterator(Object key)
Deprecated.
Gets an iterator for the collection mapped to the specified key.
|
Object |
put(Object key,
Object value)
Deprecated.
Adds the value to the collection associated with the specified key.
|
void |
putAll(Map map)
Deprecated.
Override superclass to ensure that MultiMap instances are
correctly handled.
|
boolean |
putAll(Object key,
Collection values)
Deprecated.
Adds a collection of values to the collection associated with the specified key.
|
Object |
remove(Object key,
Object item)
Deprecated.
Removes a specific value from map.
|
int |
size(Object key)
Deprecated.
Gets the size of the collection mapped to the specified key.
|
int |
totalSize()
Deprecated.
Gets the total size of the map by counting all the values.
|
Collection |
values()
Deprecated.
Gets a collection containing all the values in the map.
|
containsKey, entrySet, get, isEmpty, keySet, remove, size
equals, hashCode, toString
public MultiHashMap()
public MultiHashMap(int initialCapacity)
initialCapacity
- the initial map capacitypublic MultiHashMap(int initialCapacity, float loadFactor)
initialCapacity
- the initial map capacityloadFactor
- the amount 0.0-1.0 at which to resize the mappublic MultiHashMap(Map mapToCopy)
This method performs different behaviour depending on whether the map specified is a MultiMap or not. If a MultiMap is specified, each internal collection is also cloned. If the specified map only implements Map, then the values are not cloned.
NOTE: From Commons Collections 3.1 this method correctly copies a MultiMap to form a truly independent new map. NOTE: From Commons Collections 3.2 this method delegates to the newly added putAll(Map) override method.
mapToCopy
- a Map to copypublic int totalSize()
public Collection getCollection(Object key)
get(key)
.key
- the key to retrievepublic int size(Object key)
key
- the key to get size forpublic Iterator iterator(Object key)
key
- the key to get an iterator forpublic Object put(Object key, Object value)
Unlike a normal Map
the previous value is not replaced.
Instead the new value is added to the collection stored against the key.
public void putAll(Map map)
NOTE: Prior to version 3.2, putAll(map) did not work properly when passed a MultiMap.
public boolean putAll(Object key, Collection values)
key
- the key to store againstvalues
- the values to add to the collection at the key, null ignoredpublic boolean containsValue(Object value)
This checks all collections against all keys for the value, and thus could be slow.
containsValue
in interface Map
containsValue
in interface MultiMap
containsValue
in class HashMap
value
- the value to search forpublic boolean containsValue(Object key, Object value)
value
- the value to search forpublic Object remove(Object key, Object item)
The item is removed from the collection mapped to the specified key. Other values attached to that key are unaffected.
If the last value for a key is removed, null
will be returned
from a subsequant get(key)
.
public void clear()
This clears each collection in the map, and so may be slow.
public Collection values()
This returns a collection containing the combination of values from all keys.
public Object clone()
The clone will shallow clone the collections as well as the map.
protected Collection createCollection(Collection coll)
This method can be overridden to use your own collection type.
coll
- the collection to copy, may be nullCopyright © 2001–2015 The Apache Software Foundation. All rights reserved.