MCPcopy Index your code
hub / github.com/antlr/codebuff / containsKey

Method containsKey

output/java8/1.4.14/TypeRegistry.java:56–64  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

54 }
55
56 public boolean containsKey(Object key) {
57 if ( cache.containsKey(key) ) {
58 return true;
59 }
60 if ( !(key instanceof Class) ) {
61 return false;
62 }
63 return get(key)!=null;
64 }
65
66 @SuppressWarnings("unchecked")
67 public boolean containsValue(Object value) {

Callers

nothing calls this directly

Calls 2

getMethod · 0.95
containsKeyMethod · 0.65

Tested by

no test coverage detected