Package org.eclipse.collections.impl.map.sorted.mutable
This package contains implementations of the
MutableSortedMap
interface.
This package contains the following implementations:
-
SortedMapAdapter
- aMutableSortedMap
wrapper around aSortedMap
interface instance. -
SynchronizedSortedMap
- a synchronized view of a SortedMap. -
UnmodifiableSortedMap
- an unmodifiable view of a SortedMap. -
UnmodifiableTreeMap
- an unmodifiable view of a SortedMap.
This package contains one factory implementation:
-
MutableSortedMapFactoryImpl
- a factory which creates instances of typeMutableSortedMap
.
-
Class Summary Class Description AbstractMutableSortedMap<K,V> MutableSortedMapFactoryImpl SortedMapAdapter<K,V> This class provides a MutableSortedMap wrapper around a JDK Collections SortedMap interface instance.SynchronizedSortedMap<K,V> A synchronized view of a SortedMap.TreeSortedMap<K,V> UnmodifiableSortedMap<K,V> An unmodifiable view of a SortedMap.UnmodifiableTreeMap<K,V> An unmodifiable view of a map.