BagMultimap interface.See: Description
| Class | Description |
|---|---|
| HashBagMultimap<K,V> | |
| ImmutableBagMultimapImpl<K,V> |
The default ImmutableBagMultimap implementation.
|
| SynchronizedPutHashBagMultimap<K,V> |
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
BagMultimap interface.
A BagMultimap is a type of MultiMap that uses a Bag as its underlying store for the multiple values of a given key.
This package contains the following implementations:
HashBagMultimap - a MutableBagMultiMap which uses a HashBag as its underlying store for the multiple values of a given key.
ImmutableBagMultimapImpl - the default ImmutableBagMultiMap implementation.
SynchronizedPutHashBagMultimap - a MutableBagMultiMap that is optimized for parallel writes, but is not protected for concurrent reads.