Uses of Interface
java.util.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
Modifier 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.Modifier and TypeClassDescriptionclass
Hash table and linked list implementation of theSet
interface, with well-defined encounter order.class
TreeSet<E>
ANavigableSet
implementation based on aTreeMap
.Modifier 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
.Modifier 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
Modifier and TypeClassDescriptionclass
A scalable concurrentNavigableSet
implementation based on aConcurrentSkipListMap
.