| Modifier and Type | Method and Description |
|---|---|
BTreeMap.SubMap<K,V> |
BTreeMap.SubMap.headMap(K toKey) |
BTreeMap.SubMap<K,V> |
BTreeMap.SubMap.headMap(K toKey,
boolean inclusive) |
private BTreeMap.SubMap<K,V> |
BTreeMap.SubMap.newSubMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive)
Utility to create submaps, where given bounds override
unbounded(null) ones and/or are checked against bounded ones.
|
BTreeMap.SubMap<K,V> |
BTreeMap.SubMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive) |
BTreeMap.SubMap<K,V> |
BTreeMap.SubMap.subMap(K fromKey,
K toKey) |
BTreeMap.SubMap<K,V> |
BTreeMap.SubMap.tailMap(K fromKey) |
BTreeMap.SubMap<K,V> |
BTreeMap.SubMap.tailMap(K fromKey,
boolean inclusive) |