Generated by
JDiff

Interface com.google.common.collect.SortedMultiset

Changed Methods
Comparator<? super E> comparator() Changed from non-abstract to abstract. Returns the comparator that orders this multiset, or Ordering.natural() if the natural ordering of the elements is used.
SortedMultiset<E> descendingMultiset() Changed from non-abstract to abstract. Returns a descending view of this multiset.
NavigableSet<E> elementSet() Changed from non-abstract to abstract. Returns a NavigableSet view of the distinct elements in this multiset.
Set<Entry<E>> entrySet() Changed from non-abstract to abstract. {@inheritDoc}
Entry<E> firstEntry() Changed from non-abstract to abstract. Returns the entry of the first element in this multiset, or {@code null} if this multiset is empty.
SortedMultiset<E> headMultiset(E, BoundType) Changed from non-abstract to abstract. Returns a view of this multiset restricted to the elements less than {@code upperBound}, optionally including {@code upperBound} itself.
Iterator<E> iterator() Changed from non-abstract to abstract. {@inheritDoc}
Entry<E> lastEntry() Changed from non-abstract to abstract. Returns the entry of the last element in this multiset, or {@code null} if this multiset is empty.
Entry<E> pollFirstEntry() Changed from non-abstract to abstract. Returns and removes the entry associated with the lowest element in this multiset, or returns {@code null} if this multiset is empty.
Entry<E> pollLastEntry() Changed from non-abstract to abstract. Returns and removes the entry associated with the greatest element in this multiset, or returns {@code null} if this multiset is empty.
SortedMultiset<E> subMultiset(E, BoundType, E, BoundType) Changed from non-abstract to abstract. Returns a view of this multiset restricted to the range between {@code lowerBound} and {@code upperBound}.
SortedMultiset<E> tailMultiset(E, BoundType) Changed from non-abstract to abstract. Returns a view of this multiset restricted to the elements greater than {@code lowerBound}, optionally including {@code lowerBound} itself.