MCPcopy Create free account
hub / github.com/apache/poi / get

Method get

src/java/org/apache/poi/util/BinaryTree.java:1399–1403  ·  view source on GitHub ↗

Returns the value to which this map maps the specified key. Returns null if the map contains no mapping for this key. @param key key whose associated value is to be returned. @return the value to which this map maps the specified key, or null if the map contains no mapping for this key. @

(Object key)

Source from the content-addressed store, hash-verified

1397 * @exception NullPointerException if the key is null
1398 */
1399 public Object get(Object key)
1400 throws ClassCastException, NullPointerException
1401 {
1402 return doGet(( Comparable ) key, _KEY);
1403 }
1404
1405 /**
1406 * Associates the specified value with the specified key in this

Callers 3

testGetMethod · 0.95
testRemoveMethod · 0.95
testPutAllMethod · 0.95

Calls 1

doGetMethod · 0.95

Tested by 3

testGetMethod · 0.76
testRemoveMethod · 0.76
testPutAllMethod · 0.76