| 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 | 
|---|---|
| Multiset.Entry<E> | SortedMultiset. firstEntry()Returns the entry of the first element in this multiset, or  nullif
 this multiset is empty. | 
| Multiset.Entry<E> | ForwardingSortedMultiset. firstEntry() | 
| static <E> Multiset.Entry<E> | Multisets. immutableEntry(E e,
                            int n)Returns an immutable multiset entry with the specified element and count. | 
| Multiset.Entry<E> | SortedMultiset. lastEntry()Returns the entry of the last element in this multiset, or  nullif
 this multiset is empty. | 
| Multiset.Entry<E> | ForwardingSortedMultiset. lastEntry() | 
| Multiset.Entry<E> | ImmutableSortedMultiset. pollFirstEntry()Deprecated. 
 Unsupported operation. | 
| Multiset.Entry<E> | SortedMultiset. pollFirstEntry()Returns and removes the entry associated with the lowest element in this
 multiset, or returns  nullif this multiset is empty. | 
| Multiset.Entry<E> | ForwardingSortedMultiset. pollFirstEntry() | 
| Multiset.Entry<E> | ImmutableSortedMultiset. pollLastEntry()Deprecated. 
 Unsupported operation. | 
| Multiset.Entry<E> | SortedMultiset. pollLastEntry()Returns and removes the entry associated with the greatest element in this
 multiset, or returns  nullif this multiset is empty. | 
| Multiset.Entry<E> | ForwardingSortedMultiset. pollLastEntry() | 
| protected Multiset.Entry<E> | ForwardingSortedMultiset. standardFirstEntry()A sensible definition of  ForwardingSortedMultiset.firstEntry()in terms ofentrySet().iterator(). | 
| protected Multiset.Entry<E> | ForwardingSortedMultiset. standardLastEntry()A sensible definition of  ForwardingSortedMultiset.lastEntry()in terms ofdescendingMultiset().entrySet().iterator(). | 
| protected Multiset.Entry<E> | ForwardingSortedMultiset. standardPollFirstEntry()A sensible definition of  ForwardingSortedMultiset.pollFirstEntry()in terms ofentrySet().iterator(). | 
| protected Multiset.Entry<E> | ForwardingSortedMultiset. standardPollLastEntry()A sensible definition of  ForwardingSortedMultiset.pollLastEntry()in terms ofdescendingMultiset().entrySet().iterator(). | 
| Modifier and Type | Method and Description | 
|---|---|
| Set<Multiset.Entry<E>> | Multiset. entrySet()Returns a view of the contents of this multiset, grouped into  Multiset.Entryinstances, each providing an element of the multiset and
 the count of that element. | 
| Set<Multiset.Entry<E>> | ForwardingMultiset. entrySet() | 
| Set<Multiset.Entry<E>> | ConcurrentHashMultiset. entrySet() | 
| ImmutableSet<Multiset.Entry<E>> | ImmutableMultiset. entrySet() | 
Copyright © 2010-2014. All Rights Reserved.