Returns an immutable collection of all key-value pairs in the multimap.
()
| 557 | */ |
| 558 | |
| 559 | @Override |
| 560 | public ImmutableCollection<Entry<K, V>> entries() { |
| 561 | return (ImmutableCollection<Entry<K, V>>) super.entries(); |
| 562 | } |
| 563 | |
| 564 | @Override |
| 565 | ImmutableCollection<Entry<K, V>> createEntries() { |