Uses of Class
com.google.common.collect.TreeMultimap
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of TreeMultimap in com.google.common.collect
Modifier and TypeMethodDescriptionstatic <K extends Comparable,
V extends Comparable>
TreeMultimap<K, V> TreeMultimap.create()
Creates an emptyTreeMultimap
ordered by the natural ordering of its keys and values.static <K extends Comparable,
V extends Comparable>
TreeMultimap<K, V> Constructs aTreeMultimap
, ordered by the natural ordering of its keys and values, with the same mappings as the specified multimap.static <K extends @Nullable Object,
V extends @Nullable Object>
TreeMultimap<K, V> TreeMultimap.create
(Comparator<? super K> keyComparator, Comparator<? super V> valueComparator) Creates an emptyTreeMultimap
instance using explicit comparators.