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

Method containsKey

vm/JavaAPI/src/java/util/HashMap.java:364–368  ·  view source on GitHub ↗

Returns whether this map contains the specified key. @param key the key to search for. @return true if this map contains the specified key, false otherwise.

(Object key)

Source from the content-addressed store, hash-verified

362 * {@code false} otherwise.
363 */
364 @Override
365 public boolean containsKey(Object key) {
366 Entry<K, V> m = getEntry(key);
367 return m != null;
368 }
369
370 /**
371 * Returns whether this map contains the specified value.

Callers 6

findCommonContainersMethod · 0.95
renameLocalsNPreludeMethod · 0.95
buildBasicBlocksMethod · 0.95
renameParamsToLocalsMethod · 0.95
classIndexMethod · 0.95
containsMethod · 0.95

Calls 1

getEntryMethod · 0.95

Tested by

no test coverage detected