JavaTM 2 Platform
Standard Ed. 5.0

Uses of Interface
java.util.SortedSet

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

Classes in java.util that implement SortedSet
 class TreeSet<E>
          This class implements the Set interface, backed by a TreeMap instance.
 

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

Methods in java.util with parameters of type SortedSet
static
<E> SortedSet<E>
Collections.checkedSortedSet(SortedSet<E> s, Class<E> type)
          Returns a dynamically typesafe view of the specified sorted set.
static
<T> SortedSet<T>
Collections.synchronizedSortedSet(SortedSet<T> s)
          Returns a synchronized (thread-safe) sorted set backed by the specified sorted set.
static
<T> SortedSet<T>
Collections.unmodifiableSortedSet(SortedSet<T> s)
          Returns an unmodifiable view of the specified sorted set.
 

Constructors in java.util with parameters of type SortedSet
PriorityQueue(SortedSet<? extends E> c)
          Creates a PriorityQueue containing the elements in the specified collection.
TreeSet(SortedSet<E> s)
          Constructs a new set containing the same elements as the specified sorted set, sorted according to the same ordering.
 


JavaTM 2 Platform
Standard Ed. 5.0

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 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.