Uses of Interface
java.util.SequencedMap
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 SequencedMap in java.util
Modifier 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 a total ordering on its keys.Modifier 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.Modifier and TypeMethodDescriptionLinkedHashMap.reversed()
Returns a reverse-ordered view of this map.SequencedMap.reversed()
Returns a reverse-ordered view of this map.static <K,
V> SequencedMap <K, V> Collections.unmodifiableSequencedMap
(SequencedMap<? extends K, ? extends V> m) Returns an unmodifiable view of the specifiedSequencedMap
.Modifier 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 an unmodifiable view of the specifiedSequencedMap
. -
Uses of SequencedMap in java.util.concurrent
Modifier and TypeInterfaceDescriptioninterface
AConcurrentMap
supportingNavigableMap
operations, and recursively so for its navigable sub-maps.Modifier and TypeClassDescriptionclass
A scalable concurrentConcurrentNavigableMap
implementation.