Package | Description |
---|---|
com.gs.collections.api.bag |
This package contains interfaces for Bag API.
|
com.gs.collections.api.multimap.bag |
This package contains interfaces for
BagMultimap . |
com.gs.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
com.gs.collections.impl.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
com.gs.collections.impl.multimap.bag |
This package contains implementations of the
BagMultimap interface. |
Modifier and Type | Method and Description |
---|---|
<V> MutableBagMultimap<V,T> |
MutableBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
MutableBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
MutableBagMultimap<K,V> |
MutableBagMultimap.newEmpty() |
MutableBagMultimap<K,V> |
UnsortedBagMultimap.toMutable() |
Modifier and Type | Method and Description |
---|---|
<V> MutableBagMultimap<V,T> |
UnmodifiableBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
SynchronizedBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
MultiReaderHashBag.groupBy(Function<? super T,? extends V> function) |
<V> MutableBagMultimap<V,T> |
UnmodifiableBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBagMultimap<V,T> |
SynchronizedBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableBagMultimap<V,T> |
MultiReaderHashBag.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableBagMultimap<K,V> |
Multimaps.MutableMultimaps.MutableBagMultimapFactory.with() |
<K,V> MutableBagMultimap<K,V> |
Multimaps.MutableMultimaps.MutableBagMultimapFactory.with(K key,
V value) |
<K,V> MutableBagMultimap<K,V> |
Multimaps.MutableMultimaps.MutableBagMultimapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableBagMultimap<K,V> |
Multimaps.MutableMultimaps.MutableBagMultimapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
Modifier and Type | Class and Description |
---|---|
class |
HashBagMultimap<K,V> |
class |
SynchronizedPutHashBagMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
Modifier and Type | Method and Description |
---|---|
MutableBagMultimap<K,V> |
HashBagMultimap.toMutable() |
MutableBagMultimap<K,V> |
ImmutableBagMultimapImpl.toMutable() |
MutableBagMultimap<K,V> |
SynchronizedPutHashBagMultimap.toMutable() |
Copyright © 2004–2019. All rights reserved.