Package org.eclipse.collections.impl.multimap.set.sorted
This package contains implementations of the
SortedSetMultimap interface.
A SortedSetMultimap is a type of Multimap that uses a sorted set as its underlying store for the multiple values of a given key.
This package contains the following implementations:
-
TreeSortedSetMultimap- aMutableSortedSetMultimapwhich uses aTreeSortedSetas its underlying store for the multiple values of a given key. -
ImmutableSortedSetMultimapImpl- the defaultImmutableSortedSetMultimapimplementation.
-
Class Summary Class Description ImmutableSortedSetMultimapImpl<K,V> The default ImmutableSortedSetMultimap implementation.SynchronizedPutTreeSortedSetMultimap<K,V> A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.SynchronizedSortedSetMultimap<K,V> TreeSortedSetMultimap<K,V>