|
Java Platform 1.2 Beta 4 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |