| Package | Description |
|---|---|
| com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for working with collections.
|
| Modifier and Type | Method and Description |
|---|---|
static <K |
ImmutableListMultimap.builder()
Returns a new builder.
|
ImmutableListMultimap |
ImmutableListMultimap.Builder.orderKeysBy(Comparator
Specifies the ordering of the generated multimap's keys.
|
ImmutableListMultimap |
ImmutableListMultimap.Builder.orderValuesBy(Comparator
Specifies the ordering of the generated multimap's values for each key.
|
ImmutableListMultimap |
ImmutableListMultimap.Builder.put(K key, V value)
|
ImmutableListMultimap |
ImmutableListMultimap.Builder.put(Map
Adds an entry to the built multimap.
|
ImmutableListMultimap |
ImmutableListMultimap.Builder.putAll(K key, Iterable
|
ImmutableListMultimap |
ImmutableListMultimap.Builder.putAll(K key, V... values)
|
ImmutableListMultimap |
ImmutableListMultimap.Builder.putAll(Multimap
|