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
- a MutableSortedSetMultimap
which uses a TreeSortedSet
as its underlying store for the multiple values of a given key.
ImmutableSortedSetMultimapImpl
- the default ImmutableSortedSetMultimap
implementation.
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> |
Copyright © 2004–2017. All rights reserved.