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

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

Introduction

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

The text is from its open source code.

Implementation

com.google.common.collect.SortedMultiset has the following implementations.
Click this link to see all its implementation.

Method

booleanadd(E element)
Adds a single occurrence of the specified element to this multiset.
intadd(@Nullable E element, int occurrences)
Adds a number of occurrences of an element to this multiset.
booleanaddAll(Collection c)
Adds all of the elements in the specified collection to this collection (optional operation).
SortedMultisetdescendingMultiset()
SortedSetelementSet()
Returns a SortedSet view of the distinct elements in this multiset.
booleanequals(@Nullable Object object)
Compares the specified object with this multiset for equality.
Iteratoriterator()

Elements that occur multiple times in the multiset will appear multiple times in this iterator, though not necessarily sequentially.

intsize()
Returns the number of elements in this collection.
SortedMultisetsubMultiset(E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType)