Java java.util NavigableMap fields, constructors, methods, implement or subclass

Example usage for Java java.util NavigableMap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util NavigableMap.

The text is from its open source code.

Implementation

java.util.NavigableMap has the following implementations.
Click this link to see all its implementation.

Method

Map.EntryceilingEntry(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.
KceilingKey(K key)
Returns the least key greater than or equal to the given key, or null if there is no such key.
voidclear()
Removes all of the mappings from this map (optional operation).
booleancontainsKey(Object key)
Returns true if this map contains a mapping for the specified key.
booleancontainsValue(Object value)
Returns true if this map maps one or more keys to the specified value.
NavigableSetdescendingKeySet()
Returns a reverse order NavigableSet view of the keys contained in this map.
NavigableMapdescendingMap()
Returns a reverse order view of the mappings contained in this map.
Set>entrySet()
Returns a Set view of the mappings contained in this map.
booleanequals(Object o)
Compares the specified object with this map for equality.
Map.EntryfirstEntry()
Returns a key-value mapping associated with the least key in this map, or null if the map is empty.
KfirstKey()
Returns the first (lowest) key currently in this map.
Map.EntryfloorEntry(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.
KfloorKey(K key)
Returns the greatest key less than or equal to the given key, or null if there is no such key.
voidforEach(BiConsumer action)
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
Vget(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
SortedMapheadMap(K toKey)

Equivalent to headMap(toKey, false) .

NavigableMapheadMap(K toKey, boolean inclusive)
Returns a view of the portion of this map whose keys are less than (or equal to, if inclusive is true) toKey .
Map.EntryhigherEntry(K 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.
KhigherKey(K key)
Returns the least key strictly greater than the given key, or null if there is no such key.
booleanisEmpty()
Returns true if this map contains no key-value mappings.
SetkeySet()
Returns a Set view of the keys contained in this map.
Map.EntrylastEntry()
Returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
KlastKey()
Returns the last (highest) key currently in this map.
Map.EntrylowerEntry(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.
KlowerKey(K key)
Returns the greatest key strictly less than the given key, or null if there is no such key.
NavigableSetnavigableKeySet()
Returns a NavigableSet view of the keys contained in this map.
Map.EntrypollFirstEntry()
Removes and returns a key-value mapping associated with the least key in this map, or null if the map is empty.
Map.EntrypollLastEntry()
Removes and returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
Vput(K key, V value)
Associates the specified value with the specified key in this map (optional operation).
voidputAll(Map m)
Copies all of the mappings from the specified map to this map (optional operation).
Vremove(Object key)
Removes the mapping for a key from this map if it is present (optional operation).
intsize()
Returns the number of key-value mappings in this map.
SortedMapsubMap(K fromKey, K toKey)

Equivalent to subMap(fromKey, true, toKey, false) .

NavigableMapsubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
Returns a view of the portion of this map whose keys range from fromKey to toKey .
SortedMaptailMap(K fromKey)

Equivalent to tailMap(fromKey, true) .

NavigableMaptailMap(K fromKey, boolean inclusive)
Returns a view of the portion of this map whose keys are greater than (or equal to, if inclusive is true) fromKey .
StringtoString()
Returns a string representation of the object.
Collectionvalues()
Returns a Collection view of the values contained in this map.