Java Platform 1.2
Beta 4

Uses of Interface
java.util.SortedMap

Packages that use SortedMap
java.util Provides useful utilities for data structures, date, time, internationalization, events (root interfaces), a simple string tokenizer, a random-number generator, observers, properties and exceptions.  
 

Uses of SortedMap in java.util
 

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

Methods in java.util that return SortedMap
static SortedMap Collections.unmodifiableSortedMap(SortedMap m)
          Returns an unmodifiable view of the specified SortedMap.
static SortedMap Collections.synchronizedSortedMap(SortedMap m)
          Returns a synchronized (thread-safe) SortedMap backed by the specified SortedMap.
 SortedMap TreeMap.subMap(Object fromKey, Object toKey)
          Returns a view of the portion of this TreeMap whose keys range from fromKey, inclusive, to toKey, exclusive.
 SortedMap TreeMap.headMap(Object toKey)
          Returns a view of the portion of this TreeMap whose keys are strictly less than toKey.
 SortedMap TreeMap.tailMap(Object fromKey)
          Returns a view of the portion of this TreeMap whose keys are strictly less than toKey.
 SortedMap SortedMap.subMap(Object fromKey, Object toKey)
          Returns a view of the portion of this SortedMap whose keys range from fromKey, inclusive, to toKey, exclusive.
 SortedMap SortedMap.headMap(Object toKey)
          Returns a view of the portion of this SortedMap whose keys are strictly less than toKey.
 SortedMap SortedMap.tailMap(Object fromKey)
          Returns a view of the portion of this SortedMap 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 SortedMap.
static SortedMap Collections.synchronizedSortedMap(SortedMap m)
          Returns a synchronized (thread-safe) SortedMap backed by the specified SortedMap.
 

Constructors in java.util with parameters of type SortedMap
TreeMap.TreeMap(SortedMap m)
          Constructs a new TreeMap containing the same mappings as the given SortedMap, sorted according to the same ordering.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.