MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / containsKey

Method containsKey

Ports/CLDC11/src/java/util/HashMap.java:368–372  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

366 /// @return `true` if this map contains the specified key,
367 /// `false` otherwise.
368 @Override
369 public boolean containsKey(Object key) {
370 Entry<K, V> m = getEntry(key);
371 return m != null;
372 }
373
374 /// Returns whether this map contains the specified value.
375 ///

Callers 2

containsMethod · 0.95

Calls 1

getEntryMethod · 0.95

Tested by

no test coverage detected