Uses of Interface
java.util.SequencedSet
Packages that use SequencedSet
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 of SequencedSet in java.util
Subinterfaces of SequencedSet in java.utilModifier and TypeInterfaceDescriptioninterface
NavigableSet<E>
ASortedSet
extended with navigation methods reporting closest matches for given search targets.interface
SortedSet<E>
ASet
that further provides a total ordering on its elements.Classes in java.util that implement SequencedSetModifier 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 in java.util that return SequencedSetModifier 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-ordered view of this collection.SequencedSet.reversed()
Returns a reverse-ordered view of this collection.LinkedHashMap.sequencedEntrySet()
Returns aSequencedSet
view of this map'sentrySet
.default SequencedSet
<Map.Entry<K, V>> SequencedMap.sequencedEntrySet()
Returns aSequencedSet
view of this map'sentrySet
.LinkedHashMap.sequencedKeySet()
Returns aSequencedSet
view of this map'skeySet
.default SequencedSet
<K> SequencedMap.sequencedKeySet()
Returns aSequencedSet
view of this map'skeySet
.static <T> SequencedSet
<T> Collections.unmodifiableSequencedSet
(SequencedSet<? extends T> s) Returns an unmodifiable view of the specifiedSequencedSet
.Methods in java.util with parameters of type SequencedSetModifier and TypeMethodDescriptionstatic <T> SequencedSet
<T> Collections.unmodifiableSequencedSet
(SequencedSet<? extends T> s) Returns an unmodifiable view of the specifiedSequencedSet
. -
Uses of SequencedSet in java.util.concurrent
Classes in java.util.concurrent that implement SequencedSetModifier and TypeClassDescriptionclass
A scalable concurrentNavigableSet
implementation based on aConcurrentSkipListMap
.