Package org.eclipse.collections.impl.multimap.bag
package org.eclipse.collections.impl.multimap.bag
This package contains implementations of the
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- aMutableBagMultimapwhich uses aHashBagas its underlying store for the multiple values of a given key. -
ImmutableBagMultimapImpl- the defaultImmutableBagMultimapimplementation. -
SynchronizedPutHashBagMultimap- aMutableBagMultimapthat is optimized for parallel writes, but is not protected for concurrent reads.
-
ClassesClassDescriptionHashBagMultimap<K,
V> The default ImmutableBagMultimap implementation.A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.TreeBagMultimap<K,V> Deprecated.in 5.0.