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 TypeInterfaceDescriptioninterfaceNavigableSet<E>ASortedSetextended with navigation methods reporting closest matches for given search targets.interfaceSortedSet<E>ASetthat further provides atotal ordering on its elements.Classes injava.util that implementSequencedSetModifier and TypeClassDescriptionclassHash table and linked list implementation of theSetinterface, with well-defined encounter order.classTreeSet<E>ANavigableSetimplementation 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 aSequencedSetview of this map'sentrySet.defaultSequencedSet<Map.Entry<K, V>> SequencedMap.sequencedEntrySet()Returns aSequencedSetview of this map'sentrySet.LinkedHashMap.sequencedKeySet()Returns aSequencedSetview of this map'skeySet.defaultSequencedSet<K> SequencedMap.sequencedKeySet()Returns aSequencedSetview 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 TypeClassDescriptionclassA scalable concurrentNavigableSetimplementation based on aConcurrentSkipListMap.