public Iterator<Entry<K, V>> iterator() { checkCache(); return new EntryIterator<K, V>(root); }
/** * {@inheritDoc} */ public Entry<K, V> next() { return nextEntry(); } }
public Iterator<Entry<K, V>> iterator() { checkCache(); return new EntryIterator<K, V>(root); }
/** * {@inheritDoc} */ public Entry<K, V> next() { return nextEntry(); } }