Class MultiValueMapCollector<T,K,V>

java.lang.Object
org.springframework.util.MultiValueMapCollector<T,K,V>
Type Parameters:
T - the type of input elements to the reduction operation
K - the key type
V - the value element type
All Implemented Interfaces:
Collector<T, MultiValueMap<K,V>, MultiValueMap<K,V>>

public final class MultiValueMapCollector<T,K,V> extends Object implements Collector<T, MultiValueMap<K,V>, MultiValueMap<K,V>>
A Collector for building a MultiValueMap from a Stream.

Copied from the Spring Data Commons project.

Since:
7.0.2
Author:
Jens Schauder, Florian Hof, Sam Brannen