All Methods Static Methods Instance Methods Concrete Methods
Modifier and Type |
Method and Description |
java.util.function.BiConsumer<SetMap<K,V>,T> |
accumulator() |
java.util.Set<java.util.stream.Collector.Characteristics> |
characteristics() |
static <T,K,V> SetMapCollector<T,K,V> |
collect(java.util.function.Function<T,K> keyMapper,
java.util.function.Function<T,V> valueMapper)
Collects the stream into a new SetMap where stream objects are mapped
to SetMap keys by the given keyMapper and to SetMap values by
the given valueMapper.
|
java.util.function.BinaryOperator<SetMap<K,V>> |
combiner() |
java.util.function.Function<SetMap<K,V>,SetMap<K,V>> |
finisher() |
static <T,K> SetMapCollector<T,K,T> |
groupingBy(java.util.function.Function<T,K> keyMapper)
Collects the stream into a new SetMap , grouping stream objects by the
given keyMapper.
|
java.util.function.Supplier<SetMap<K,V>> |
supplier() |