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

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

Subclasses of ImmutableMultimap.Builder in com.google.common.collect
static class ImmutableListMultimap.Builder<K,V>
          A builder for creating immutable ListMultimap instances, especially public static final multimaps ("constant multimaps").
static class ImmutableSetMultimap.Builder<K,V>
          A builder for creating immutable SetMultimap instances, especially public static final multimaps ("constant multimaps").
 

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



Copyright © 2010 Google. All Rights Reserved.