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

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

Uses of TreeMultiset in com.google.common.collect
 

Methods in com.google.common.collect that return TreeMultiset
static
<E extends Comparable>
TreeMultiset<E>
TreeMultiset.create()
          Creates a new, empty multiset, sorted according to the elements' natural order.
static
<E> TreeMultiset<E>
TreeMultiset.create(Comparator<? super E> comparator)
          Creates a new, empty multiset, sorted according to the specified comparator.
static
<E extends Comparable>
TreeMultiset<E>
TreeMultiset.create(Iterable<? extends E> elements)
          Creates an empty multiset containing the given initial elements, sorted according to the elements' natural order.