MCPcopy Index your code
hub / github.com/jankotek/mapdb / get

Method get

src/main/java/org/mapdb/BTreeMapJava.java:654–659  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

652 }
653
654 @Override
655 public V get(Object key) {
656 if (key == null) throw new NullPointerException();
657 K k = (K)key;
658 return ((!inBounds(k)) ? null : m.get(k));
659 }
660
661 @Override
662 public V put(K key, V value) {

Callers

nothing calls this directly

Calls 2

inBoundsMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected