Java org.springframework.util MultiValueMap fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.util MultiValueMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.util MultiValueMap.

The text is from its open source code.

Implementation

org.springframework.util.MultiValueMap has the following implementations.
Click this link to see all its implementation.

Method

voidadd(K key, @Nullable V value)
Add the given single value to the current list of values for the given key.
voidaddAll(K key, List values)
Add all the values of the given list to the current list of values for the given key.
voidclear()
Removes all of the mappings from this map (optional operation).
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.
voidforEach(BiConsumer action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
Vget(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
ClassgetClass()
Returns the runtime class of this Object .
VgetFirst(K key)
Return the first value for the given key.
booleanisEmpty()
Returns true if this map contains no key-value mappings.
SetkeySet()
Returns a Set view of the keys contained in this map.
Vput(K key, V value)
Associates the specified value with the specified key in this map (optional operation).
voidputAll(Map m)
Copies all of the mappings from the specified map to this map (optional operation).
Vremove(Object key)
Removes the mapping for a key from this map if it is present (optional operation).
voidset(K key, @Nullable V value)
Set the given single value under the given key.
voidsetAll(Map values)
Set the given values under.
intsize()
Returns the number of key-value mappings in this map.
MaptoSingleValueMap()
Return a Map with the first values contained in this MultiValueMap .
StringtoString()
Returns a string representation of the object.
Collectionvalues()
Returns a Collection view of the values contained in this map.