Java org.apache.commons.collections4 MultiValuedMap fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections4 MultiValuedMap fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Method

Map>asMap()
Returns a view of this multi-valued map as a Map from each distinct key to the non-empty collection of that key's associated values.
booleancontainsKey(Object key)
Returns true if this map contains a mapping for the specified key.
booleancontainsValue(Object value)
Checks whether the map contains at least one mapping for the specified value.
Collectionget(K key)
Returns a view collection of the 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 multi-valued map.
booleanput(K key, V value)
Adds a key-value mapping to this multi-valued map.
booleanputAll(K key, Iterable values)
Adds a mapping to the specified key for all values contained in the given Iterable.
booleanremoveMapping(Object key, Object item)
Removes a key-value mapping from the map.
intsize()
Gets the total size of the map.
Collectionvalues()
Gets a Collection view of all values contained in this multi-valued map.