Uses of Interface
java.util.SortedSet
Packages that useSortedSet Package Description java.util 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.java.util.concurrent Utility classes commonly useful in concurrent programming.javax.imageio.plugins.tiff Public classes used by the built-in TIFF plug-ins.Uses ofSortedSet injava.util
Subinterfaces ofSortedSet injava.util Modifier and Type Interface Description interfaceNavigableSet<E>ASortedSetextended with navigation methods reporting closest matches for given search targets.Classes injava.util that implementSortedSet Modifier and Type Class Description classTreeSet<E>ANavigableSetimplementation based on aTreeMap.Methods injava.util that returnSortedSet Modifier and Type Method Description static <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).SortedSet<E>NavigableSet. headSet(E toElement)Returns a view of the portion of this set whose elements are strictly less thantoElement.SortedSet<E>SortedSet. headSet(E toElement)Returns a view of the portion of this set whose elements are strictly less thantoElement.SortedSet<E>TreeSet. headSet(E toElement)SortedSet<E>NavigableSet. subSet(E fromElement,E toElement)Returns a view of the portion of this set whose elements range fromfromElement, inclusive, totoElement, exclusive.SortedSet<E>SortedSet. subSet(E fromElement,E toElement)Returns a view of the portion of this set whose elements range fromfromElement, inclusive, totoElement, exclusive.SortedSet<E>TreeSet. subSet(E fromElement,E toElement)static <T> SortedSet<T>Collections. synchronizedSortedSet(SortedSet<T> s)Returns a synchronized (thread-safe) sorted set backed by the specified sorted set.SortedSet<E>NavigableSet. tailSet(E fromElement)Returns a view of the portion of this set whose elements are greater than or equal tofromElement.SortedSet<E>SortedSet. tailSet(E fromElement)Returns a view of the portion of this set whose elements are greater than or equal tofromElement.SortedSet<E>TreeSet. tailSet(E fromElement)static <T> SortedSet<T>Collections. unmodifiableSortedSet(SortedSet<T> s)Returns anunmodifiable view of the specified sorted set.Methods injava.util with parameters of typeSortedSet Modifier and Type Method Description static <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.Constructors injava.util with parameters of typeSortedSet Constructor Description PriorityQueue(SortedSet<? extendsE> c)Creates aPriorityQueuecontaining the elements in the specified sorted set.TreeSet(SortedSet<E> s)Constructs a new tree set containing the same elements and using the same ordering as the specified sorted set.Uses ofSortedSet injava.util.concurrent
Classes injava.util.concurrent that implementSortedSet Modifier and Type Class Description classConcurrentSkipListSet<E>A scalable concurrentNavigableSetimplementation based on aConcurrentSkipListMap.Constructors injava.util.concurrent with parameters of typeSortedSet Constructor Description ConcurrentSkipListSet(SortedSet<E> s)Constructs 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 returnSortedSet Modifier and Type Method Description SortedSet<String>TIFFTagSet. getTagNames()Retrieves an unmodifiable lexicographically increasing set of tag names.SortedSet<Integer>TIFFTagSet. getTagNumbers()Retrieves an unmodifiable numerically increasing set of tag numbers.