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

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

Uses of ImmutableMultimap in com.google.common.collect
 

Methods in com.google.common.collect that return ImmutableMultimap
 ImmutableMultimap<K,V> ImmutableMultimap.Builder.build()
          Returns a newly-created immutable multimap.
static
<K,V> ImmutableMultimap<K,V>
ImmutableMultimap.copyOf(Multimap<? extends K,? extends V> multimap)
          Returns an immutable multimap containing the same mappings as multimap.
static
<K,V> ImmutableMultimap<K,V>
Multimaps.index(java.lang.Iterable<V> values, Function<? super V,K> keyFunction)
          Creates an index ImmutableMultimap that contains the results of applying a specified function to each item in an Iterable of values.
static
<K,V> ImmutableMultimap<K,V>
ImmutableMultimap.of()
          Returns the empty multimap.
static
<K,V> ImmutableMultimap<K,V>
ImmutableMultimap.of(K k1, V v1)
          Returns an immutable multimap containing a single entry.
static
<K,V> ImmutableMultimap<K,V>
ImmutableMultimap.of(K k1, V v1, K k2, V v2)
          Returns an immutable multimap containing the given entries, in order.
static
<K,V> ImmutableMultimap<K,V>
ImmutableMultimap.of(K k1, V v1, K k2, V v2, K k3, V v3)
          Returns an immutable multimap containing the given entries, in order.
static
<K,V> ImmutableMultimap<K,V>
ImmutableMultimap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
          Returns an immutable multimap containing the given entries, in order.
static
<K,V> ImmutableMultimap<K,V>
ImmutableMultimap.of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
          Returns an immutable multimap containing the given entries, in order.
 



Copyright © 2007-2009 Google. All Rights Reserved.