| Package | Description |
|---|---|
| com.gs.collections.impl.multimap |
This package contains implementations of the
Multimap interface. |
| com.gs.collections.impl.multimap.bag |
This package contains implementations of the
BagMultimap interface. |
| com.gs.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
| com.gs.collections.impl.multimap.set |
This package contains implementations of the
SetMultimap interface. |
| com.gs.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
| com.gs.collections.impl.multimap.set.strategy |
This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractImmutableMultimap<K,V,C extends com.gs.collections.api.collection.ImmutableCollection<V>> |
class |
AbstractMutableMultimap<K,V,C extends com.gs.collections.api.collection.MutableCollection<V>> |
class |
AbstractSynchronizedPutMultimap<K,V,C extends com.gs.collections.api.collection.MutableCollection<V>> |
| Modifier and Type | Method and Description |
|---|---|
protected com.gs.collections.api.block.function.Function<AbstractMultimap<K,V,C>,C> |
AbstractMultimap.createCollectionBlock() |
| Modifier and Type | Class and Description |
|---|---|
class |
HashBagMultimap<K,V> |
class |
ImmutableBagMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.
|
class |
SynchronizedPutHashBagMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
| Modifier and Type | Class and Description |
|---|---|
class |
FastListMultimap<K,V> |
class |
ImmutableListMultimapImpl<K,V>
The default ImmutableListMultimap implementation.
|
class |
SynchronizedPutFastListMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ImmutableSetMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.
|
class |
SynchronizedPutUnifiedSetMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
class |
UnifiedSetMultimap<K,V> |
| Modifier and Type | Class and Description |
|---|---|
class |
ImmutableSortedSetMultimapImpl<K,V>
The default ImmutableSortedSetMultimap implementation.
|
class |
TreeSortedSetMultimap<K,V> |
| Modifier and Type | Class and Description |
|---|---|
class |
UnifiedSetWithHashingStrategyMultimap<K,V> |