Uses of Interface
java.util.SortedMap

Packages that use SortedMap
java.util   
 

Uses of SortedMap in java.util
 

Classes in java.util that implement SortedMap
(package private) static class Collections.SynchronizedSortedMap
           
(package private) static class Collections.UnmodifiableSortedMap
           
 class TreeMap
          Red-Black tree based implementation of the SortedMap interface.
private  class TreeMap.SubMap
           
 

Fields in java.util declared as SortedMap
private  SortedMap Collections.UnmodifiableSortedMap.sm
           
private  SortedMap Collections.SynchronizedSortedMap.sm
           
private  SortedMap TreeSet.m
           
 

Methods in java.util that return SortedMap
static SortedMap Collections.unmodifiableSortedMap(SortedMap m)
          Returns an unmodifiable view of the specified sorted map.
static SortedMap Collections.synchronizedSortedMap(SortedMap m)
          Returns a synchronized (thread-safe) sorted map backed by the specified sorted map.
 SortedMap Collections.UnmodifiableSortedMap.subMap(Object fromKey, Object toKey)
           
 SortedMap Collections.UnmodifiableSortedMap.headMap(Object toKey)
           
 SortedMap Collections.UnmodifiableSortedMap.tailMap(Object fromKey)
           
 SortedMap Collections.SynchronizedSortedMap.subMap(Object fromKey, Object toKey)
           
 SortedMap Collections.SynchronizedSortedMap.headMap(Object toKey)
           
 SortedMap Collections.SynchronizedSortedMap.tailMap(Object fromKey)
           
 SortedMap TreeMap.subMap(Object fromKey, Object toKey)
          Returns a view of the portion of this map whose keys range from fromKey, inclusive, to toKey, exclusive.
 SortedMap TreeMap.headMap(Object toKey)
          Returns a view of the portion of this map whose keys are strictly less than toKey.
 SortedMap TreeMap.tailMap(Object fromKey)
          Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
 SortedMap TreeMap.SubMap.subMap(Object fromKey, Object toKey)
           
 SortedMap TreeMap.SubMap.headMap(Object toKey)
           
 SortedMap TreeMap.SubMap.tailMap(Object fromKey)
           
 SortedMap SortedMap.subMap(Object fromKey, Object toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 SortedMap SortedMap.headMap(Object toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 SortedMap SortedMap.tailMap(Object fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 

Methods in java.util with parameters of type SortedMap
static SortedMap Collections.unmodifiableSortedMap(SortedMap m)
          Returns an unmodifiable view of the specified sorted map.
static SortedMap Collections.synchronizedSortedMap(SortedMap m)
          Returns a synchronized (thread-safe) sorted map backed by the specified sorted map.
 

Constructors in java.util with parameters of type SortedMap
Collections.UnmodifiableSortedMap.Collections.UnmodifiableSortedMap(SortedMap m)
           
Collections.SynchronizedSortedMap.Collections.SynchronizedSortedMap(SortedMap m)
           
Collections.SynchronizedSortedMap.Collections.SynchronizedSortedMap(SortedMap m, Object mutex)
           
TreeSet.TreeSet(SortedMap m)
          Constructs a set backed by the given sorted map.
TreeMap.TreeMap(SortedMap m)
          Constructs a new map containing the same mappings as the given SortedMap, sorted according to the same ordering.