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

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

Introduction

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

The text is from its open source code.

Implementation

org.apache.commons.collections.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.
booleancontainsValue(Object value)
Checks whether the map contains the value specified.
Set>entrySet()
Returns a Set view of the mappings contained in this map.
Objectget(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.
Objectput(Object key, Object value)
Adds the value to the collection associated with the specified key.
voidputAll(Map m)
Copies all of the mappings from the specified map to this map (optional operation).
Objectremove(Object key)
Removes all values associated with the specified key.
Objectremove(Object key, Object item)
Removes a specific value from map.
intsize()
Gets the number of keys in this map.