Uses of Interface
java.util.SequencedMap
Packages that useSequencedMap
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 ofSequencedMap injava.util
Subinterfaces ofSequencedMap injava.utilModifier and TypeInterfaceDescriptioninterface
NavigableMap<K,
V> ASortedMap
extended with navigation methods returning the closest matches for given search targets.interface
SortedMap<K,
V> AMap
that further provides atotal ordering on its keys.Classes injava.util that implementSequencedMapModifier and TypeClassDescriptionclass
LinkedHashMap<K,
V> Hash table and linked list implementation of theMap
interface, with well-defined encounter order.class
TreeMap<K,
V> A Red-Black tree basedNavigableMap
implementation.Methods injava.util that returnSequencedMapModifier and TypeMethodDescriptionLinkedHashMap.reversed()
Returns a reverse-orderedview of this map.SequencedMap.reversed()
Returns a reverse-orderedview of this map.static <K,
V> SequencedMap <K, V> Collections.unmodifiableSequencedMap
(SequencedMap<? extends K, ? extends V> m) Returns anunmodifiable view of the specifiedSequencedMap
.Methods injava.util with parameters of typeSequencedMapModifier and TypeMethodDescriptionstatic <E> SequencedSet
<E> Collections.newSequencedSetFromMap
(SequencedMap<E, Boolean> map) Returns a sequenced set backed by the specified map.static <K,
V> SequencedMap <K, V> Collections.unmodifiableSequencedMap
(SequencedMap<? extends K, ? extends V> m) Returns anunmodifiable view of the specifiedSequencedMap
.Uses ofSequencedMap injava.util.concurrent
Subinterfaces ofSequencedMap injava.util.concurrentModifier and TypeInterfaceDescriptioninterface
AConcurrentMap
supportingNavigableMap
operations, and recursively so for its navigable sub-maps.Classes injava.util.concurrent that implementSequencedMap