Java com.google.common.collect ImmutableSortedMultiset fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect ImmutableSortedMultiset fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect ImmutableSortedMultiset.

The text is from its open source code.

Method

ImmutableSortedMultisetcopyOf(E[] elements)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
ImmutableSortedMultisetcopyOf(Iterable elements)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
ImmutableSortedMultisetcopyOf(Iterator elements)
Returns an immutable sorted multiset containing the given elements sorted by their natural ordering.
ImmutableSortedMultisetcopyOf(Comparator comparator, Iterator elements)
Returns an immutable sorted multiset containing the given elements sorted by the given Comparator .
ImmutableSortedMultisetcopyOf(Comparator comparator, Iterable elements)
Returns an immutable sorted multiset containing the given elements sorted by the given Comparator .
ImmutableSortedMultisetcopyOfSorted(SortedMultiset sortedMultiset)
Returns an immutable sorted multiset containing the elements of a sorted multiset, sorted by the same Comparator .
BuildernaturalOrder()
Returns a builder that creates immutable sorted multisets whose elements are ordered by their natural ordering.
BuilderorderedBy(Comparator comparator)
Returns a builder that creates immutable sorted multisets with an explicit comparator.