Uses of Interface
java.util.SequencedSet
Packages that useSequencedSet
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.
Uses ofSequencedSet injava.util
Subinterfaces ofSequencedSet injava.utilModifier and TypeInterfaceDescriptioninterface
NavigableSet<E>
ASortedSet
extended with navigation methods reporting closest matches for given search targets.interface
SortedSet<E>
ASet
that further provides atotal ordering on its elements.Classes injava.util that implementSequencedSetModifier and TypeClassDescriptionclass
Hash table and linked list implementation of theSet
interface, with well-defined encounter order.class
TreeSet<E>
ANavigableSet
implementation based on aTreeMap
.Methods injava.util that returnSequencedSetModifier and TypeMethodDescriptionstatic <E> SequencedSet
<E> Collections.newSequencedSetFromMap
(SequencedMap<E, Boolean> map) Returns a sequenced set backed by the specified map.LinkedHashSet.reversed()
Returns a reverse-orderedview of this collection.SequencedSet.reversed()
Returns a reverse-orderedview of this collection.LinkedHashMap.sequencedEntrySet()
Returns aSequencedSet
view of this map'sentrySet
.defaultSequencedSet
<Map.Entry<K, V>> SequencedMap.sequencedEntrySet()
Returns aSequencedSet
view of this map'sentrySet
.LinkedHashMap.sequencedKeySet()
Returns aSequencedSet
view of this map'skeySet
.defaultSequencedSet
<K> SequencedMap.sequencedKeySet()
Returns aSequencedSet
view of this map'skeySet
.static <T> SequencedSet
<T> Collections.unmodifiableSequencedSet
(SequencedSet<? extends T> s) Returns anunmodifiable view of the specifiedSequencedSet
.Methods injava.util with parameters of typeSequencedSetModifier and TypeMethodDescriptionstatic <T> SequencedSet
<T> Collections.unmodifiableSequencedSet
(SequencedSet<? extends T> s) Returns anunmodifiable view of the specifiedSequencedSet
.Uses ofSequencedSet injava.util.concurrent
Classes injava.util.concurrent that implementSequencedSetModifier and TypeClassDescriptionclass
A scalable concurrentNavigableSet
implementation based on aConcurrentSkipListMap
.