addEntries abstract method

void addEntries(
  1. Iterable<MapEntry<String, Iterable<V>>> entries
)

Adds all associations contained in entries to this TTMultiMap.

Is equivilent to calling addValues for each entry.

keyMapping is applied to all incoming keys so keys may be altered or skipped during copying from entries.

Depending on characteristics of values collection type operation may or may not change this instance. For example if this instance holds values in a Set then it may not be updated if value already exists.

Implementation

void addEntries(Iterable<MapEntry<String, Iterable<V>>> entries);