()
| 409 | } |
| 410 | |
| 411 | @Override |
| 412 | public Iterator<Map.Entry<K, V>> iterator() { |
| 413 | return new HashIterator<Map.Entry<K, V>>( |
| 414 | new MapEntry.Type<Map.Entry<K, V>, K, V>() { |
| 415 | public Map.Entry<K, V> get( |
| 416 | MapEntry<K, V> entry) { |
| 417 | return entry; |
| 418 | } |
| 419 | }); |
| 420 | } |
| 421 | }, this); |
| 422 | } |
| 423 |