Returns an immutable set of the mappings in this map. The entries are in the same order as the parameters used to build this map.
()
| 496 | */ |
| 497 | |
| 498 | @Override |
| 499 | public ImmutableSet<Entry<K, V>> entrySet() { |
| 500 | ImmutableSet<Entry<K, V>> result = entrySet; |
| 501 | return (result == null) ? entrySet = createEntrySet() : result; |
| 502 | } |
| 503 | |
| 504 | abstract ImmutableSet<Entry<K, V>> createEntrySet(); |
| 505 | private transient ImmutableSet<K> keySet; |
no test coverage detected