Changed Methods |
Entry firstEntry()
|
Change in return type from Entry<E> to Entry .
|
Returns the entry of the first element in this multiset, or {@code null} if this multiset is
empty. |
Entry lastEntry()
|
Change in return type from Entry<E> to Entry .
|
Returns the entry of the last element in this multiset, or {@code null} if this multiset is
empty. |
Entry pollFirstEntry()
|
Change in return type from Entry<E> to Entry .
|
Returns and removes the entry associated with the lowest element in this multiset, or returns
{@code null} if this multiset is empty. |
Entry pollLastEntry()
|
Change in return type from Entry<E> to Entry .
|
Returns and removes the entry associated with the greatest element in this multiset, or returns
{@code null} if this multiset is empty. |