MCPcopy Create free account
hub / github.com/antlr/codebuff / entrySet

Method entrySet

output/java_guava/1.4.17/ImmutableMap.java:498–502  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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;

Callers 2

keyIteratorMethod · 0.95
hashCodeMethod · 0.95

Calls 1

createEntrySetMethod · 0.95

Tested by

no test coverage detected