()
| 427 | } |
| 428 | |
| 429 | @Override |
| 430 | public Iterator<Map.Entry<K, V>> iterator() { |
| 431 | return new HashIterator<Map.Entry<K, V>>( |
| 432 | new MapEntry.Type<Map.Entry<K, V>, K, V>() { |
| 433 | public Map.Entry<K, V> get( |
| 434 | MapEntry<K, V> entry) { |
| 435 | return entry; |
| 436 | } |
| 437 | }); |
| 438 | } |
| 439 | }, this); |
| 440 | } |
| 441 |