Lines Matching defs:entrySet

34  * class and provide an implementation for the <tt>entrySet</tt> method, which
43 * <tt>entrySet().iterator()</tt> must additionally implement its
81 * <p>This implementation returns <tt>entrySet().size()</tt>.
84 return entrySet().size();
99 * <p>This implementation iterates over <tt>entrySet()</tt> searching
109 Iterator<Entry<K,V>> i = entrySet().iterator();
129 * <p>This implementation iterates over <tt>entrySet()</tt> searching
140 Iterator<Map.Entry<K,V>> i = entrySet().iterator();
160 * <p>This implementation iterates over <tt>entrySet()</tt> searching
171 Iterator<Entry<K,V>> i = entrySet().iterator();
209 * <p>This implementation iterates over <tt>entrySet()</tt> searching for an
219 * <tt>UnsupportedOperationException</tt> if the <tt>entrySet</tt>
228 Iterator<Entry<K,V>> i = entrySet().iterator();
259 * <tt>entrySet()</tt> collection, and calls this map's <tt>put</tt>
272 for (Map.Entry<? extends K, ? extends V> e : m.entrySet())
279 * <p>This implementation calls <tt>entrySet().clear()</tt>.
282 * <tt>UnsupportedOperationException</tt> if the <tt>entrySet</tt>
288 entrySet().clear();
307 * map's <tt>entrySet()</tt> iterator. The <tt>size</tt> method
322 private Iterator<Entry<K,V>> i = entrySet().iterator();
363 * "wrapper object" over this map's <tt>entrySet()</tt> iterator.
378 private Iterator<Entry<K,V>> i = entrySet().iterator();
414 public abstract Set<Entry<K,V>> entrySet();
424 * <tt>m1.entrySet().equals(m2.entrySet())</tt>. This ensures that the
432 * <tt>entrySet</tt> collection, and checks that the specified map
451 Iterator<Entry<K,V>> i = entrySet().iterator();
476 * <tt>entrySet()</tt> view. This ensures that <tt>m1.equals(m2)</tt>
481 * <p>This implementation iterates over <tt>entrySet()</tt>, calling
492 Iterator<Entry<K,V>> i = entrySet().iterator();
501 * map's <tt>entrySet</tt> view's iterator, enclosed in braces
511 Iterator<Entry<K,V>> i = entrySet().iterator();
565 * <tt>Map.entrySet().toArray</tt>.