Uses of Class
com.google.common.collect.TreeMultiset
-
Packages that use TreeMultiset Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections.com.google.common.testing This package contains testing utilities. -
-
Uses of TreeMultiset in com.google.common.collect
Methods in com.google.common.collect that return TreeMultiset Modifier and Type Method Description static <E extends java.lang.Comparable>
TreeMultiset<E>TreeMultiset. create()
Creates a new, empty multiset, sorted according to the elements' natural order.static <E extends java.lang.Comparable>
TreeMultiset<E>TreeMultiset. create(java.lang.Iterable<? extends E> elements)
Creates an empty multiset containing the given initial elements, sorted according to the elements' natural order.static <E> TreeMultiset<E>
TreeMultiset. create(java.util.Comparator<? super E> comparator)
Creates a new, empty multiset, sorted according to the specified comparator. -
Uses of TreeMultiset in com.google.common.testing
Methods in com.google.common.testing that return TreeMultiset Modifier and Type Method Description (package private) static <E extends java.lang.Comparable<E>>
TreeMultiset<E>FreshValueGenerator. generateTreeMultiset(E freshElement)
-