Uses of Class
com.google.common.collect.ImmutableMultimapBuilder

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

Uses of ImmutableMultimapBuilder in com.google.common.collect
 

Methods in com.google.common.collect that return ImmutableMultimapBuilder
 ImmutableMultimapBuilder<K,V> ImmutableMultimapBuilder.put(K key, V value)
          Adds a key-value mapping to the multimap that will be returned by getMultimap.
 ImmutableMultimapBuilder<K,V> ImmutableMultimapBuilder.putAll(K key, java.lang.Iterable<? extends V> values)
          Stores a collection of values with the same key into the multimap that will be returned by getMultimap.
 ImmutableMultimapBuilder<K,V> ImmutableMultimapBuilder.putAll(K key, V... values)
          Stores an array of values with the same key into the multimap that will be returned by getMultimap.
 



Copyright © 2008 Google. All Rights Reserved.