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

Method subMap

src/main/java/org/mapdb/BTreeMapJava.java:964–972  ·  view source on GitHub ↗
(K fromKey,
                                  boolean fromInclusive,
                                  K toKey,
                                  boolean toInclusive)

Source from the content-addressed store, hash-verified

962 }
963
964 @Override
965 public SubMap<K,V> subMap(K fromKey,
966 boolean fromInclusive,
967 K toKey,
968 boolean toInclusive) {
969 if (fromKey == null || toKey == null)
970 throw new NullPointerException();
971 return newSubMap(fromKey, fromInclusive, toKey, toInclusive);
972 }
973
974 @Override
975 public SubMap<K,V> headMap(K toKey,

Callers 15

setUpMethod · 0.45
testSubMapMethod · 0.45
testSubMap2Method · 0.45
testSubMap3Method · 0.45
testSubMap4Method · 0.45
testClearSubmapMethod · 0.45
testSubMapMethod · 0.45
setUpMethod · 0.45
test_SubMap_firstKeyMethod · 0.45
test_SubMap_lastKeyMethod · 0.45
test_SubMap_isEmptyMethod · 0.45

Calls 1

newSubMapMethod · 0.95

Tested by 15

setUpMethod · 0.36
testSubMapMethod · 0.36
testSubMap2Method · 0.36
testSubMap3Method · 0.36
testSubMap4Method · 0.36
testClearSubmapMethod · 0.36
testSubMapMethod · 0.36
setUpMethod · 0.36
test_SubMap_firstKeyMethod · 0.36
test_SubMap_lastKeyMethod · 0.36
test_SubMap_isEmptyMethod · 0.36