Uses of Interface
java.util.SortedSet
Packages that useSortedSet
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 ofSortedSet injava.util
Modifier and TypeInterfaceDescriptioninterface
NavigableSet<E>
ASortedSet
extended with navigation methods reporting closest matches for given search targets.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
.SortedSet.reversed()
Returns a reverse-orderedview of this collection.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 anunmodifiable 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 anunmodifiable view of the specified sorted set.Uses ofSortedSet injava.util.concurrent
Classes injava.util.concurrent that implementSortedSetModifier and TypeClassDescriptionclass
A scalable concurrentNavigableSet
implementation based on aConcurrentSkipListMap
.Constructors injava.util.concurrent with parameters of typeSortedSetModifierConstructorDescriptionConstructs a new set containing the same elements and using the same ordering as the specified sorted set.Uses ofSortedSet injavax.imageio.plugins.tiff
Methods injavax.imageio.plugins.tiff that returnSortedSetModifier and TypeMethodDescriptionTIFFTagSet.getTagNames()
Retrieves an unmodifiable lexicographically increasing set of tag names.TIFFTagSet.getTagNumbers()
Retrieves an unmodifiable numerically increasing set of tag numbers.