Uses of Interface
java.util.SortedSet
Package
Description
Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
Public classes used by the built-in TIFF plug-ins.
-
Uses of SortedSet in java.util
Modifier and TypeInterfaceDescriptioninterface
NavigableSet<E>
ASortedSet
extended with navigation methods reporting closest matches for given search targets.Modifier and TypeClassDescriptionclass
TreeSet<E>
ANavigableSet
implementation based on aTreeMap
.Modifier and TypeMethodDescriptionstatic <E> SortedSet<E>
Collections.checkedSortedSet
(SortedSet<E> s, Class<E> type) Returns a dynamically typesafe view of the specified sorted set.static <E> SortedSet<E>
Collections.emptySortedSet()
Returns an empty sorted set (immutable).Returns a view of the portion of this set whose elements are strictly less thantoElement
.Returns a view of the portion of this set whose elements are strictly less thantoElement
.Returns a view of the portion of this set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.Returns a view of the portion of this set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.static <T> SortedSet<T>
Collections.synchronizedSortedSet
(SortedSet<T> s) Returns a synchronized (thread-safe) sorted set backed by the specified sorted set.Returns a view of the portion of this set whose elements are greater than or equal tofromElement
.Returns a view of the portion of this set whose elements are greater than or equal tofromElement
.static <T> SortedSet<T>
Collections.unmodifiableSortedSet
(SortedSet<T> s) Returns an unmodifiable view of the specified sorted set.Modifier and TypeMethodDescriptionstatic <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. -
Uses of SortedSet in java.util.concurrent
Modifier and TypeClassDescriptionclass
A scalable concurrentNavigableSet
implementation based on aConcurrentSkipListMap
.ModifierConstructorDescriptionConstructs a new set containing the same elements and using the same ordering as the specified sorted set. -
Uses of SortedSet in javax.imageio.plugins.tiff
Modifier and TypeMethodDescriptionTIFFTagSet.getTagNames()
Retrieves an unmodifiable lexicographically increasing set of tag names.TIFFTagSet.getTagNumbers()
Retrieves an unmodifiable numerically increasing set of tag numbers.