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

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>
TreeMultimap.create()
          Creates an empty TreeMultimap ordered by the natural ordering of its keys and values.
static
<K,V> TreeMultimap<K,V>
TreeMultimap.create(java.util.Comparator<? super K> keyComparator, java.util.Comparator<? super V> valueComparator)
          Creates an empty TreeMultimap instance using explicit comparators.
static
<K extends java.lang.Comparable,V extends java.lang.Comparable>
TreeMultimap<K,V>
TreeMultimap.create(Multimap<? extends K,? extends V> multimap)
          Constructs a TreeMultimap, ordered by the natural ordering of its keys and values, with the same mappings as the specified multimap.
 



Copyright © 2010 Google. All Rights Reserved.