Uses of Interface java.util.SortedMap

Uses in package java.nio.charset

Methods with return type java.util.SortedMap

SortedMap

Uses in package java.util

Classes implementing java.util.SortedMap

class
This class provides a red-black tree implementation of the SortedMap interface.

Constructors with parameter type java.util.SortedMap

Instantiate a new TreeMap, initializing it with all of the elements in the provided SortedMap.

Methods with parameter type java.util.SortedMap

SortedMap
Returns a synchronized (thread-safe) sorted map wrapper backed by the given map.
SortedMap
Returns an unmodifiable view of the given sorted map.

Methods with return type java.util.SortedMap

SortedMap
Returns a view of the portion of the map strictly less than toKey.
SortedMap
Returns a view of this Map including all entries with keys less than toKey.
SortedMap
SortedMap.subMap(Object fromKey, Object toKey)
Returns a view of the portion of the map greater than or equal to fromKey, and strictly less than toKey.
SortedMap
TreeMap.subMap(Object fromKey, Object toKey)
Returns a view of this Map including all entries with keys greater or equal to fromKey and less than toKey (a half-open interval).
SortedMap
Returns a synchronized (thread-safe) sorted map wrapper backed by the given map.
SortedMap
Returns a view of the portion of the map greater than or equal to fromKey.
SortedMap
Returns a view of this Map including all entries with keys greater or equal to fromKey.
SortedMap
Returns an unmodifiable view of the given sorted map.