ImmutableListMultimap<K,V> | 
ImmutableListMultimap.Builder.build() | 
 Returns a newly-created immutable list multimap. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.copyOf(Multimap<? extends K,? extends V> multimap) | 
 Returns an immutable multimap containing the same mappings as multimap. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.copyOf(Iterable<? extends Map.Entry<? extends K,? extends V>> entries) | 
 Returns an immutable multimap containing the specified entries. 
 | 
<K> ImmutableListMultimap<K,E> | 
FluentIterable.index(Function<? super E,K> keyFunction) | 
 Creates an index ImmutableListMultimap that contains the results of applying a
 specified function to each item in this FluentIterable of values. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
Multimaps.index(Iterable<V> values,
     Function<? super V,K> keyFunction) | 
 Creates an index ImmutableListMultimap that contains the results of applying a
 specified function to each item in an Iterable of values. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
Multimaps.index(Iterator<V> values,
     Function<? super V,K> keyFunction) | 
 Creates an index ImmutableListMultimap that contains the results of applying a
 specified function to each item in an Iterator of values. 
 | 
ImmutableListMultimap<V,K> | 
ImmutableListMultimap.inverse() | 
 Returns an immutable multimap which is the inverse of this one. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.of() | 
 Returns the empty multimap. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.of(K k1,
  V v1) | 
 Returns an immutable multimap containing a single entry. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.of(K k1,
  V v1,
  K k2,
  V v2) | 
 Returns an immutable multimap containing the given entries, in order. 
 | 
static <K,V> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.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> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.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> ImmutableListMultimap<K,V> | 
ImmutableListMultimap.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. 
 |