Uses of Interface java.util.SortedSet

Uses in package java.util

Classes implementing java.util.SortedSet

class
This class provides a TreeMap-backed implementation of the SortedSet interface.

Constructors with parameter type java.util.SortedSet

Construct a new TreeSet, using the same key ordering as the supplied SortedSet and containing all of the elements in the supplied SortedSet.

Methods with parameter type java.util.SortedSet

SortedSet
Returns a synchronized (thread-safe) sorted set wrapper backed by the given set.
SortedSet
Returns an unmodifiable view of the given sorted set.

Methods with return type java.util.SortedSet

SortedSet
Returns a view of the portion of the set strictly less than toElement.
SortedSet
Returns a view of this Set including all elements less than to.
SortedSet
SortedSet.subSet(Object fromElement, Object toElement)
Returns a view of the portion of the set greater than or equal to fromElement, and strictly less than toElement.
SortedSet
Returns a view of this Set including all elements greater or equal to from and less than to (a half-open interval).
SortedSet
Returns a synchronized (thread-safe) sorted set wrapper backed by the given set.
SortedSet
SortedSet.tailSet(Object fromElement)
Returns a view of the portion of the set greater than or equal to fromElement.
SortedSet
Returns a view of this Set including all elements greater or equal to from.
SortedSet
Returns an unmodifiable view of the given sorted set.