Java org.apache.commons.collections15 MultiMap fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections15 MultiMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections15 MultiMap.

The text is from its open source code.

Implementation

org.apache.commons.collections15.MultiMap has the following implementations.
Click this link to see all its implementation.

Method

booleancontainsKey(Object key)
Returns true if this map contains a mapping for the specified key.
Set>>entrySet()
Returns a set view of the mappings contained in this map.
Collectionget(Object key)
Gets the collection of values associated with the specified key.
booleanisEmpty()
Returns true if this map contains no key-value mappings.
SetkeySet()
Returns a set view of the keys contained in this map.
Map>map()
Returns a java.util.Map<K,Collection<V>> for this MultiMap.
Vput(K key, V value)
Adds the value to the collection associated with the specified key.
voidputAll(Map t)
Copies all of the mappings from the specified map to this map (optional operation).
voidputAll(MultiMap t)
Copies all of the mappings from the specified multimap to this multimap (optional operation).
Vremove(Object key, Object item)
Removes a specific value from map.
intsize()
Gets the number of keys in this map.
Collectionvalues()
Gets a collection containing all the values in the map.