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

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

Subclasses of ImmutableMap.Builder in com.google.common.collect
static class ImmutableBiMap.Builder<K,V>
          A builder for creating immutable bimap instances, especially public static final bimaps ("constant bimaps").
static class ImmutableSortedMap.Builder<K,V>
          A builder for creating immutable sorted map instances, especially public static final maps ("constant maps").
 

Methods in com.google.common.collect that return ImmutableMap.Builder
static
<K,V> ImmutableMap.Builder<K,V>
ImmutableMap.builder()
          Returns a new builder.
 ImmutableMap.Builder<K,V> ImmutableMap.Builder.put(K key, V value)
          Associates key with value in the built map.
 ImmutableMap.Builder<K,V> ImmutableMap.Builder.putAll(java.util.Map<? extends K,? extends V> map)
          Associates all of the given map's keys and values in the built map.
 



Copyright © 2010 Google. All Rights Reserved.