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

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



Copyright © 2010 Google. All Rights Reserved.