Uses of Class
com.google.common.collect.TreeMultimap
- 
Packages that use TreeMultimap Package Description com.google.common.collect Collection interfaces and implementations, and other utilities for collections.
- 
- 
Uses of TreeMultimap in com.google.common.collectMethods in com.google.common.collect that return TreeMultimap Modifier and Type Method Description static <K extends java.lang.Comparable,V extends java.lang.Comparable>
 TreeMultimap<K,V>TreeMultimap. create()Creates an emptyTreeMultimapordered by the natural ordering of its keys and values.static <K extends java.lang.Comparable,V extends java.lang.Comparable>
 TreeMultimap<K,V>TreeMultimap. create(Multimap<? extends K,? extends V> multimap)Constructs aTreeMultimap, ordered by the natural ordering of its keys and values, with the same mappings as the specified multimap.static <K extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
 TreeMultimap<K,V>TreeMultimap. create(java.util.Comparator<? super K> keyComparator, java.util.Comparator<? super V> valueComparator)Creates an emptyTreeMultimapinstance using explicit comparators.
 
-