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

Method containsKey

vm/JavaAPI/src/java/util/Hashtable.java:332–334  ·  view source on GitHub ↗

Returns true if this Hashtable contains the specified object as a key of one of the key/value pairs. @param key the object to look for as a key in this Hashtable. @return true if object is a key in this Hashtable, false otherwise. @see #con

(Object key)

Source from the content-addressed store, hash-verified

330 * @see java.lang.Object#equals
331 */
332 public synchronized boolean containsKey(Object key) {
333 return getEntry(key) != null;
334 }
335
336 /**
337 * Searches this {@code Hashtable} for the specified value.

Callers 10

handleURLMethod · 0.95
readResponseMethod · 0.95
backMethod · 0.95
getThemeMethod · 0.95
parseQueryMethod · 0.95
containsMethod · 0.95
removeMethod · 0.95
testMediaRuleMethod · 0.95

Calls 1

getEntryMethod · 0.95