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

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

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

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