()
| 449 | } |
| 450 | |
| 451 | @Override |
| 452 | public Iterator<Map.Entry<K, V>> iterator() { |
| 453 | return new HashIterator<Map.Entry<K, V>>( |
| 454 | new MapEntry.Type<Map.Entry<K, V>, K, V>() { |
| 455 | public Map.Entry<K, V> get( |
| 456 | MapEntry<K, V> entry) { |
| 457 | return entry; |
| 458 | } |
| 459 | }); |
| 460 | } |
| 461 | }, this); |
| 462 | } |
| 463 |