| Package | Description |
|---|---|
| com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for working with collections.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableSortedMultiset |
ImmutableSortedMultiset.Builder.build()
Returns a newly-created
ImmutableSortedMultiset based on the contents of the
Builder.
|
static <E> ImmutableSortedMultiset |
ImmutableSortedMultiset.copyOf(Comparator
Returns an immutable sorted multiset containing the given elements sorted by the given
Comparator.
|
static <E> ImmutableSortedMultiset |
ImmutableSortedMultiset.copyOf(Comparator
Returns an immutable sorted multiset containing the given elements sorted by the given
Comparator.
|
static <E extends Comparable |
ImmutableSortedMultiset.copyOf(E[] elements)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
static <E> ImmutableSortedMultiset |
ImmutableSortedMultiset.copyOf(Iterable
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
static <E> ImmutableSortedMultiset |
ImmutableSortedMultiset.copyOf(Iterator
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
static <E> ImmutableSortedMultiset |
ImmutableSortedMultiset.copyOfSorted(SortedMultiset
Returns an immutable sorted multiset containing the elements of a sorted multiset, sorted by the same
Comparator.
|
ImmutableSortedMultiset |
ImmutableSortedMultiset.descendingMultiset()
|
abstract ImmutableSortedMultiset |
ImmutableSortedMultiset.headMultiset(E upperBound, BoundType
|
static <E> ImmutableSortedMultiset |
ImmutableSortedMultiset.of()
Returns the empty immutable sorted multiset.
|
static <E extends Comparable |
ImmutableSortedMultiset.of(E element)
Returns an immutable sorted multiset containing a single element.
|
static <E extends Comparable |
ImmutableSortedMultiset.of(E e1, E e2)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
static <E extends Comparable |
ImmutableSortedMultiset.of(E e1, E e2, E e3)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
static <E extends Comparable |
ImmutableSortedMultiset.of(E e1, E e2, E e3, E e4)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
static <E extends Comparable |
ImmutableSortedMultiset.of(E e1, E e2, E e3, E e4, E e5)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
static <E extends Comparable |
ImmutableSortedMultiset.of(E e1, E e2, E e3, E e4, E e5, E e6, E... remaining)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
|
ImmutableSortedMultiset |
ImmutableSortedMultiset.subMultiset(E lowerBound, BoundType
|
abstract ImmutableSortedMultiset |
ImmutableSortedMultiset.tailMultiset(E lowerBound, BoundType
|