addAll abstract method

void addAll(
  1. Multimap<K, V> other
)

Adds all associations of other to this multimap.

The operation is equivalent to doing this[key] = value for each key and associated value in other. It iterates over other, which must therefore not change during the iteration.

Implementation

void addAll(Multimap<K, V> other);