Java Platform 1.2
Beta 4

Uses of Interface
java.util.SortedSet

Packages that use SortedSet
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 SortedSet in java.util
 

Classes in java.util that implement SortedSet
  TreeSet
          This class implements the TreeSet interface, backed by a TreeMap.
 

Methods in java.util that return SortedSet
static SortedSet Collections.unmodifiableSortedSet(SortedSet s)
          Returns an unmodifiable view of the specified SortedSet.
static SortedSet Collections.synchronizedSortedSet(SortedSet s)
          Returns a synchronized (thread-safe) SortedSet backed by the specified SortedSet.
 SortedSet TreeSet.subSet(Object fromElement, Object toElement)
          Returns a view of the portion of this TreeSet whose elements range from fromElement, inclusive, to toElement, exclusive.
 SortedSet TreeSet.headSet(Object toElement)
          Returns a view of the portion of this TreeSet whose elements are strictly less than toElement.
 SortedSet TreeSet.tailSet(Object fromElement)
          Returns a view of the portion of this TreeSet whose elements are strictly less than toElement.
 SortedSet SortedSet.subSet(Object fromElement, Object toElement)
          Returns a view of the portion of this SortedSet whose elements range from fromElement, inclusive, to toElement, exclusive.
 SortedSet SortedSet.headSet(Object toElement)
          Returns a view of the portion of this SortedSet whose elements are strictly less than toElement.
 SortedSet SortedSet.tailSet(Object fromElement)
          Returns a view of the portion of this SortedSet whose elements are greater than or equal to fromElement.
 

Methods in java.util with parameters of type SortedSet
static SortedSet Collections.unmodifiableSortedSet(SortedSet s)
          Returns an unmodifiable view of the specified SortedSet.
static SortedSet Collections.synchronizedSortedSet(SortedSet s)
          Returns a synchronized (thread-safe) SortedSet backed by the specified SortedSet.
 

Constructors in java.util with parameters of type SortedSet
TreeSet.TreeSet(SortedSet s)
          Constructs a new TreeSet containing the same elements as the given SortedSet, 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.