Home | History | Annotate | Download | only in collect

Lines Matching defs:entrySet

34  * this class and implementing the {@link Multiset#entrySet()} method, plus
39 * the set returned by {@link Multiset#entrySet()}, as do many methods acting on
56 return entrySet().isEmpty();
69 for (Entry<E> entry : entrySet()) {
164 private transient Set<Entry<E>> entrySet;
166 @Override public Set<Entry<E>> entrySet() {
167 Set<Entry<E>> result = entrySet;
169 entrySet = result = createEntrySet();
174 class EntrySet extends Multisets.EntrySet<E> {
189 return new EntrySet();
209 * Multiset#entrySet()}.
212 return entrySet().hashCode();
219 * {@link Multiset#entrySet()}.
222 return entrySet().toString();