Package org.eclipse.collections.impl.multimap.set.sorted
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
- aMutableSortedSetMultimap
which uses aTreeSortedSet
as its underlying store for the multiple values of a given key. -
ImmutableSortedSetMultimapImpl
- the defaultImmutableSortedSetMultimap
implementation.
-
ClassesClassDescriptionThe default ImmutableSortedSetMultimap implementation.A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.