MCPcopy Create free account
hub / github.com/davidgiven/luje / getValue

Method getValue

lib/java/util/TreeMap.java:88–96  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

86 }
87
88 public V getValue() {
89 if (node.keys[offset] == key) {
90 return node.values[offset];
91 }
92 if (containsKey(key)) {
93 return get(key);
94 }
95 throw new IllegalStateException();
96 }
97
98 @Override
99 public int hashCode() {

Callers 3

equalsMethod · 0.95
hashCodeMethod · 0.95
toStringMethod · 0.95

Calls 2

containsKeyMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected