Home | History | Annotate | Download | only in collect

Lines Matching defs:entrySet

124   public Set<Entry<K, V>> entrySet() {
125 return delegate().entrySet();
150 * the {@code iterator} method of {@link #entrySet}. If you override {@link
151 * #entrySet}, you may wish to override {@link #remove} to forward to this
161 Iterator<Entry<K, V>> entryIterator = entrySet().iterator();
175 * method of {@link #entrySet}. In many cases, you may wish to override
181 Iterators.clear(entrySet().iterator());
189 * ForwardingMap#entrySet}. In many cases, you may wish to override {@link
205 * of the {@code iterator} method of {@link #entrySet}. If you override {@link
206 * #entrySet}, you may wish to override {@link #containsKey} to forward to
219 * Set#iterator} method of {@link ForwardingMap#entrySet}. In many cases, you
235 * iterator} method of {@link #entrySet}. If you override {@link #entrySet},
246 * A sensible implementation of {@link Map#entrySet} in terms of the following
250 * may wish to override {@link #entrySet} to forward to this implementation
256 protected abstract class StandardEntrySet extends Maps.EntrySet<K, V> {
268 * method of {@link #entrySet}. If you override {@link #entrySet}, you may
274 return !entrySet().iterator().hasNext();
279 * method of {@link #entrySet}. If you override {@link #entrySet}, you may
290 * method of {@link #entrySet}. If you override {@link #entrySet}, you may
296 return Sets.hashCodeImpl(entrySet());
301 * method of {@link #entrySet}. If you override {@link #entrySet}, you may