Example usage for Java java.util SortedMap fields, constructors, methods, implement or subclass
The text is from its open source code.
void | clear() Removes all of the mappings from this map (optional operation). |
Comparator super K> | comparator() Returns the comparator used to order the keys in this map, or null if this map uses the Comparable natural ordering of its keys. |
boolean | containsKey(Object key) Returns true if this map contains a mapping for the specified key. |
boolean | containsValue(Object value) Returns true if this map maps one or more keys to the specified value. |
Set | entrySet() Returns a Set view of the mappings contained in this map. |
boolean | equals(Object o) Compares the specified object with this map for equality. |
K | firstKey() Returns the first (lowest) key currently in this map. |
void | forEach(BiConsumer super K, ? super V> action) Performs the given action for each entry in this map until all entries have been processed or the action throws an exception. |
V | get(Object key) Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key. |
Class> | getClass() Returns the runtime class of this Object . |
int | hashCode() Returns the hash code value for this map. |
SortedMap | headMap(K toKey) Returns a view of the portion of this map whose keys are strictly less than toKey . |
boolean | isEmpty() Returns true if this map contains no key-value mappings. |
Set | keySet() Returns a Set view of the keys contained in this map. |
K | lastKey() Returns the last (highest) key currently in this map. |
V | put(K key, V value) Associates the specified value with the specified key in this map (optional operation). |
void | putAll(Map extends K, ? extends V> m) Copies all of the mappings from the specified map to this map (optional operation). |
V | remove(Object key) Removes the mapping for a key from this map if it is present (optional operation). |
int | size() Returns the number of key-value mappings in this map. |
SortedMap | subMap(K fromKey, K toKey) Returns a view of the portion of this map whose keys range from fromKey , inclusive, to toKey , exclusive. |
SortedMap | tailMap(K fromKey) Returns a view of the portion of this map whose keys are greater than or equal to fromKey . |
String | toString() Returns a string representation of the object. |
Collection | values() Returns a Collection view of the values contained in this map. |