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

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, java.lang.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.
 



Copyright © 2010 Google. All Rights Reserved.