Interface MultiMap<K,V>
-
- Type Parameters:
K- the type of the keys in this mapV- the type of the values in this map
- All Superinterfaces:
Get<K,java.lang.Object>,IterableGet<K,java.lang.Object>,IterableMap<K,java.lang.Object>,java.util.Map<K,java.lang.Object>,Put<K,java.lang.Object>
- All Known Implementing Classes:
MultiValueMap
@Deprecated public interface MultiMap<K,V> extends IterableMap<K,java.lang.Object>
Deprecated.since 4.1, useMultiValuedMapinsteadDefines a map that holds a collection of values against each key.A
MultiMapis 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.For example:
MultiMap mhm = new MultiValueMap(); mhm.put(key, "A"); mhm.put(key, "B"); mhm.put(key, "C"); Collection coll = (Collection) mhm.get(key);
collwill be a collection containing "A", "B", "C".NOTE: Additional methods were added to this interface in Commons Collections 3.1. These were added solely for documentation purposes and do not change the interface as they were defined in the superinterface
Mapanyway.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsValue(java.lang.Object value)Deprecated.Checks whether the map contains the value specified.java.lang.Objectget(java.lang.Object key)Deprecated.Gets the collection of values associated with the specified key.java.lang.Objectput(K key, java.lang.Object value)Deprecated.Adds the value to the collection associated with the specified key.java.lang.Objectremove(java.lang.Object key)Deprecated.Removes all values associated with the specified key.booleanremoveMapping(K key, V item)Deprecated.Removes a specific value from map.intsize()Deprecated.Gets the number of keys in this map.java.util.Collection<java.lang.Object>values()Deprecated.Gets a collection containing all the values in the map.-
Methods inherited from interface org.apache.commons.collections4.Get
containsKey, entrySet, isEmpty, keySet
-
Methods inherited from interface org.apache.commons.collections4.IterableGet
mapIterator
-
-
-
-
Method Detail
-
removeMapping
boolean removeMapping(K key, V item)
Deprecated.Removes a specific value from map.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, implementations typically return
nullfrom a subsequentget(Object), however they may choose to return an empty collection.- Parameters:
key- the key to remove fromitem- the item to remove- Returns:
trueif the mapping was removed,falseotherwise- Throws:
java.lang.UnsupportedOperationException- if the map is unmodifiablejava.lang.ClassCastException- if the key or value is of an invalid typejava.lang.NullPointerException- if the key or value is null and null is invalid- Since:
- 4.0 (signature in previous releases: V remove(K, V))
-
size
int size()
Deprecated.Gets the number of keys in this map.Implementations typically return only the count of keys in the map This cannot be mandated due to backwards compatibility of this interface.
-
get
java.lang.Object get(java.lang.Object key)
Deprecated.Gets the collection of values associated with the specified key.The returned value will implement
Collection. Implementations are free to declare that they returnCollectionsubclasses such asListorSet.Implementations typically return
nullif no values have been mapped to the key, however the implementation may choose to return an empty collection.Implementations may choose to return a clone of the internal collection.
- Specified by:
getin interfaceGet<K,V>- Specified by:
getin interfacejava.util.Map<K,V>- Parameters:
key- the key to retrieve- Returns:
- the
Collectionof values, implementations should returnnullfor no mapping, but may return an empty collection - Throws:
java.lang.ClassCastException- if the key is of an invalid typejava.lang.NullPointerException- if the key is null and null keys are invalid- See Also:
Map.get(Object)
-
containsValue
boolean containsValue(java.lang.Object value)
Deprecated.Checks whether the map contains the value specified.Implementations typically check all collections against all keys for the value. This cannot be mandated due to backwards compatibility of this interface.
- Specified by:
containsValuein interfaceGet<K,V>- Specified by:
containsValuein interfacejava.util.Map<K,V>- Parameters:
value- the value to search for- Returns:
- true if the map contains the value
- Throws:
java.lang.ClassCastException- if the value is of an invalid typejava.lang.NullPointerException- if the value is null and null value are invalid- See Also:
Map.containsValue(Object)
-
put
java.lang.Object put(K key, java.lang.Object value)
Deprecated.Adds the value to the collection associated with the specified key.Unlike a normal
Mapthe previous value is not replaced. Instead the new value is added to the collection stored against the key. The collection may be aList,Setor other collection dependent on implementation.- Specified by:
putin interfacejava.util.Map<K,V>- Specified by:
putin interfacePut<K,V>- Parameters:
key- the key to store againstvalue- the value to add to the collection at the key- Returns:
- typically the value added if the map changed and null if the map did not change
- Throws:
java.lang.UnsupportedOperationException- if the map is unmodifiablejava.lang.ClassCastException- if the key or value is of an invalid typejava.lang.NullPointerException- if the key or value is null and null is invalidjava.lang.IllegalArgumentException- if the key or value is invalid- See Also:
Map.put(Object, Object)
-
remove
java.lang.Object remove(java.lang.Object key)
Deprecated.Removes all values associated with the specified key.Implementations typically return
nullfrom a subsequentget(Object), however they may choose to return an empty collection.- Specified by:
removein interfaceGet<K,V>- Specified by:
removein interfacejava.util.Map<K,V>- Parameters:
key- the key to remove values from- Returns:
- the
Collectionof values removed, implementations should returnnullfor no mapping found, but may return an empty collection - Throws:
java.lang.UnsupportedOperationException- if the map is unmodifiablejava.lang.ClassCastException- if the key is of an invalid typejava.lang.NullPointerException- if the key is null and null keys are invalid- See Also:
Map.remove(Object)
-
values
java.util.Collection<java.lang.Object> values()
Deprecated.Gets a collection containing all the values in the map.Implementations typically return a collection containing the combination of values from all keys. This cannot be mandated due to backwards compatibility of this interface.
-
-