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

Method headMap

src/main/java/org/mapdb/BTreeMapJava.java:974–980  ·  view source on GitHub ↗
(K toKey,
                                   boolean inclusive)

Source from the content-addressed store, hash-verified

972 }
973
974 @Override
975 public SubMap<K,V> headMap(K toKey,
976 boolean inclusive) {
977 if (toKey == null)
978 throw new NullPointerException();
979 return newSubMap(null, false, toKey, inclusive);
980 }
981
982 @Override
983 public SubMap<K,V> tailMap(K fromKey,

Calls 1

newSubMapMethod · 0.95