Uses of Class
com.google.common.collect.ImmutableListMultimap.Builder

Packages that use ImmutableListMultimap.Builder
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of ImmutableListMultimap.Builder in com.google.common.collect
 

Methods in com.google.common.collect that return ImmutableListMultimap.Builder
static
<K,V> ImmutableListMultimap.Builder<K,V>
ImmutableListMultimap.builder()
          Returns a new builder.
 ImmutableListMultimap.Builder<K,V> ImmutableListMultimap.Builder.put(K key, V value)
          Adds a key-value mapping to the built multimap.
 ImmutableListMultimap.Builder<K,V> ImmutableListMultimap.Builder.putAll(K key, Iterable<? extends V> values)
          Stores a collection of values with the same key in the built multimap.
 ImmutableListMultimap.Builder<K,V> ImmutableListMultimap.Builder.putAll(K key, V... values)
          Stores an array of values with the same key in the built multimap.
 ImmutableListMultimap.Builder<K,V> ImmutableListMultimap.Builder.putAll(Multimap<? extends K,? extends V> multimap)
          Stores another multimap's entries in the built multimap.