JavaTM 2 Platform
Std. Ed. v1.4.2

Uses of Interface
java.util.SortedMap

Packages that use SortedMap
java.nio.charset Defines charsets, decoders, and encoders, for translating between bytes and Unicode characters. 
java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). 
 

Uses of SortedMap in java.nio.charset
 

Methods in java.nio.charset that return SortedMap
static SortedMap Charset.availableCharsets()
          Constructs a sorted map from canonical charset names to charset objects.
 

Uses of SortedMap in java.util
 

Classes in java.util that implement SortedMap
 class TreeMap
          Red-Black tree based implementation of the SortedMap interface.
 

Methods in java.util that return SortedMap
 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.
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 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
TreeMap(SortedMap m)
          Constructs a new map containing the same mappings as the given SortedMap, sorted according to the same ordering.
 


JavaTM 2 Platform
Std. Ed. v1.4.2

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.