Uses of Interface
java.util.SortedSet

Packages that use SortedSet
java.util   
 

Uses of SortedSet in java.util
 

Classes in java.util that implement SortedSet
(package private) static class Collections.SynchronizedSortedSet
           
(package private) static class Collections.UnmodifiableSortedSet
           
 class TreeSet
          This class implements the Set interface, backed by a TreeMap instance.
 

Fields in java.util declared as SortedSet
private  SortedSet Collections.UnmodifiableSortedSet.ss
           
private  SortedSet Collections.SynchronizedSortedSet.ss
           
 

Methods in java.util that return SortedSet
static SortedSet Collections.unmodifiableSortedSet(SortedSet s)
          Returns an unmodifiable view of the specified sorted set.
static SortedSet Collections.synchronizedSortedSet(SortedSet s)
          Returns a synchronized (thread-safe) sorted set backed by the specified sorted set.
 SortedSet Collections.UnmodifiableSortedSet.subSet(Object fromElement, Object toElement)
           
 SortedSet Collections.UnmodifiableSortedSet.headSet(Object toElement)
           
 SortedSet Collections.UnmodifiableSortedSet.tailSet(Object fromElement)
           
 SortedSet Collections.SynchronizedSortedSet.subSet(Object fromElement, Object toElement)
           
 SortedSet Collections.SynchronizedSortedSet.headSet(Object toElement)
           
 SortedSet Collections.SynchronizedSortedSet.tailSet(Object fromElement)
           
 SortedSet TreeSet.subSet(Object fromElement, Object toElement)
          Returns a view of the portion of this set whose elements range from fromElement, inclusive, to toElement, exclusive.
 SortedSet TreeSet.headSet(Object toElement)
          Returns a view of the portion of this set whose elements are strictly less than toElement.
 SortedSet TreeSet.tailSet(Object fromElement)
          Returns a view of the portion of this set whose elements are greater than or equal to fromElement.
 SortedSet SortedSet.subSet(Object fromElement, Object toElement)
          Returns a view of the portion of this sorted set whose elements range from fromElement, inclusive, to toElement, exclusive.
 SortedSet SortedSet.headSet(Object toElement)
          Returns a view of the portion of this sorted set whose elements are strictly less than toElement.
 SortedSet SortedSet.tailSet(Object fromElement)
          Returns a view of the portion of this sorted set 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 sorted set.
static SortedSet Collections.synchronizedSortedSet(SortedSet s)
          Returns a synchronized (thread-safe) sorted set backed by the specified sorted set.
(package private)  void TreeMap.addAllForTreeSet(SortedSet set, Object defaultVal)
          Intended to be called only from TreeSet.addAll
 

Constructors in java.util with parameters of type SortedSet
Collections.UnmodifiableSortedSet.Collections.UnmodifiableSortedSet(SortedSet s)
           
Collections.SynchronizedSortedSet.Collections.SynchronizedSortedSet(SortedSet s)
           
Collections.SynchronizedSortedSet.Collections.SynchronizedSortedSet(SortedSet s, Object mutex)
           
TreeSet.TreeSet(SortedSet s)
          Constructs a new set containing the same elements as the given sorted set, sorted according to the same ordering.