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

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

Uses of TreeMultimap in com.google.common.collect
 

Methods in com.google.common.collect that return TreeMultimap
static
<K extends java.lang.Comparable,V extends java.lang.Comparable>
TreeMultimap<K,V>
Multimaps.newTreeMultimap()
          Creates an empty TreeMultimap instance using the natural ordering of keys and values.
static
<K,V> TreeMultimap<K,V>
Multimaps.newTreeMultimap(java.util.Comparator<? super K> keyComparator, java.util.Comparator<? super V> valueComparator)
          Creates an empty TreeMultimap instance using explicit comparators.
static
<K,V> TreeMultimap<K,V>
Multimaps.newTreeMultimap(java.util.Comparator<? super K> keyComparator, java.util.Comparator<? super V> valueComparator, Multimap<? extends K,? extends V> multimap)
          Creates a TreeMultimap instance using explicit comparators, initialized with all elements from the supplied Multimap.
static
<K,V> TreeMultimap<K,V>
Multimaps.newTreeMultimap(Multimap<? extends K,? extends V> multimap)
          Constructs a TreeMultimap with the same mappings as the specified Multimap.
 



Copyright © 2007-2009 Google. All Rights Reserved.