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

Method get

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

Source from the content-addressed store, hash-verified

430 /// @return the value of the mapping with the specified key, or `null`
431 /// if no mapping for the specified key is found.
432 @Override
433 public V get(Object key) {
434 Entry<K, V> m = getEntry(key);
435 if (m != null) {
436 return m.value;
437 }
438 return null;
439 }
440
441 final Entry<K, V> getEntry(Object key) {
442 Entry<K, V> m;

Callers 4

doHandshakeMethod · 0.95
getAllContactsMethod · 0.95
doHandshakeMethod · 0.95
processRequestMethod · 0.95

Calls 1

getEntryMethod · 0.95

Tested by

no test coverage detected