ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.ceilingEntry(int 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 entry.
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.firstEntry() |
Returns a key-value mapping associated with the least
key in this map, or null if the map is empty.
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.floorEntry(int 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.
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.higherEntry(int key) |
Returns a key-value mapping associated with the least key
strictly greater than the given key, or null if there
is no such key.
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.lastEntry() |
Returns a key-value mapping associated with the greatest
key in this map, or null if the map is empty.
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.lowerEntry(int 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.
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.pollCeilingEntry(int key) |
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.pollFirstEntry() |
Removes and returns a key-value mapping associated with
the least key in this map, or null if the map is empty.
|
ConcurrentSkipListIntObjMultimap.IntEntry<V> |
ConcurrentSkipListIntObjMultimap.pollLastEntry() |
Removes and returns a key-value mapping associated with
the greatest key in this map, or null if the map is empty.
|