Package | Description |
---|---|
org.fusesource.hawtdb.util |
Modifier and Type | Method and Description |
---|---|
TreeMap.TreeEntry<K,V> |
TreeMap.ceilingEntry(K key)
Returns a key-value mapping associated with the least key greater than or
equal to the given key, or null if there is no such key.
|
TreeMap.TreeEntry<K,V> |
TreeMap.firstEntry()
Returns a key-value mapping associated with the least key in this map, or
null if the map is empty.
|
TreeMap.TreeEntry<K,V> |
TreeMap.floorEntry(K key)
Returns a key-value mapping associated with the greatest key less than or
equal to the given key, or null if there is no such key.
|
TreeMap.TreeEntry<K,V> |
TreeMap.getEntry(K key) |
TreeMap.TreeEntry<K,V> |
TreeMap.lastEntry()
Returns a key-value mapping associated with the greatest key in this map,
or null if the map is empty.
|
TreeMap.TreeEntry<K,V> |
TreeMap.lowerEntry(K key)
Returns a key-value mapping associated with the greatest key strictly
less than the given key, or null if there is no such key
|
TreeMap.TreeEntry<K,V> |
TreeMap.TreeEntry.next() |
TreeMap.TreeEntry<K,V> |
TreeMap.TreeEntry.previous() |
TreeMap.TreeEntry<K,V> |
TreeMap.upperEntry(K key)
Returns a key-value mapping associated with the lowest key strictly
greater than the given key, or null if there is no such key
|
Modifier and Type | Method and Description |
---|---|
V |
TreeMap.removeEntry(TreeMap.TreeEntry<K,V> n)
complicated red-black delete stuff.
|
Copyright © 2009–2016 FuseSource, Corp.. All rights reserved.