Interface ReadOnlySequencedMap<K,V>

Type Parameters:
K - the key type
V - the value type
All Superinterfaces:
Iterable<Map.Entry<K,V>>, ReadOnlyMap<K,V>
All Known Subinterfaces:
ImmutableNavigableMap<K,V>, ImmutableSequencedMap<K,V>, ImmutableSortedMap<K,V>, ReadOnlyNavigableMap<K,V>, ReadOnlySortedMap<K,V>
All Known Implementing Classes:
ChampVectorMap, MutableChampVectorMap, MutableRedBlackMap, ReadOnlyNavigableMapFacade, ReadOnlySequencedMapFacade, ReadOnlySortedMapFacade, RedBlackMap

public interface ReadOnlySequencedMap<K,V> extends ReadOnlyMap<K,V>
A read-only interface to a sequenced map. A sequenced map has a well-defined encounter order, that supports operations at both ends, and that is reversible.

References:

JEP draft: Sequenced Collections
java.ne