Uses of Interface
org.eclipse.collections.api.multimap.bag.BagMultimap
-
Uses of BagMultimap in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return BagMultimap Modifier and Type Method Description <V> BagMultimap<V,T>
Bag. groupBy(Function<? super T,? extends V> function)
<V> BagMultimap<V,T>
ParallelBag. groupBy(Function<? super T,? extends V> function)
<V> BagMultimap<V,T>
Bag. groupByEach(Function<? super T,? extends Iterable<V>> function)
<V> BagMultimap<V,T>
ParallelBag. groupByEach(Function<? super T,? extends Iterable<V>> function)
-
Uses of BagMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return BagMultimap Modifier and Type Method Description <V1> BagMultimap<V1,V>
UnsortedMapIterable. groupBy(Function<? super V,? extends V1> function)
<V1> BagMultimap<V1,V>
UnsortedMapIterable. groupByEach(Function<? super V,? extends Iterable<V1>> function)
-
Uses of BagMultimap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return BagMultimap Modifier and Type Method Description <VV> BagMultimap<VV,V>
PrimitiveObjectMap. groupBy(Function<? super V,? extends VV> function)
<VV> BagMultimap<VV,V>
PrimitiveObjectMap. groupByEach(Function<? super V,? extends Iterable<VV>> function)
-
Uses of BagMultimap in org.eclipse.collections.api.multimap.bag
Subinterfaces of BagMultimap in org.eclipse.collections.api.multimap.bag Modifier and Type Interface Description interface
ImmutableBagIterableMultimap<K,V>
interface
ImmutableBagMultimap<K,V>
interface
MutableBagIterableMultimap<K,V>
interface
MutableBagMultimap<K,V>
interface
UnsortedBagMultimap<K,V>
Methods in org.eclipse.collections.api.multimap.bag that return BagMultimap Modifier and Type Method Description BagMultimap<V,K>
BagMultimap. flip()
BagMultimap<K,V>
BagMultimap. newEmpty()
BagMultimap<K,V>
BagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)
BagMultimap<K,V>
BagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
BagMultimap<K,V>
BagMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)
BagMultimap<K,V>
BagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
-
Uses of BagMultimap in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return BagMultimap Modifier and Type Method Description <K2, V2> BagMultimap<K2,V2>
ListMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2, V2> BagMultimap<K2,V2>
ListMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
-
Uses of BagMultimap in org.eclipse.collections.api.multimap.ordered
Methods in org.eclipse.collections.api.multimap.ordered that return BagMultimap Modifier and Type Method Description <K2, V2> BagMultimap<K2,V2>
OrderedIterableMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2, V2> BagMultimap<K2,V2>
OrderedIterableMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
-
Uses of BagMultimap in org.eclipse.collections.api.multimap.sortedbag
Subinterfaces of BagMultimap in org.eclipse.collections.api.multimap.sortedbag Modifier and Type Interface Description interface
ImmutableSortedBagMultimap<K,V>
interface
MutableSortedBagMultimap<K,V>
interface
SortedBagMultimap<K,V>
Methods in org.eclipse.collections.api.multimap.sortedbag that return BagMultimap Modifier and Type Method Description <K2, V2> BagMultimap<K2,V2>
SortedBagMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2, V2> BagMultimap<K2,V2>
SortedBagMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
-
Uses of BagMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return BagMultimap Modifier and Type Method Description <K2, V2> BagMultimap<K2,V2>
SortedSetMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2, V2> BagMultimap<K2,V2>
SortedSetMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
-
Uses of BagMultimap in org.eclipse.collections.impl.multimap.bag
Classes in org.eclipse.collections.impl.multimap.bag that implement BagMultimap Modifier and Type Class Description class
AbstractMutableBagMultimap<K,V>
class
HashBagMultimap<K,V>
class
ImmutableBagMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.class
MultiReaderHashBagMultimap<K,V>
class
SynchronizedBagMultimap<K,V>
class
SynchronizedPutHashBagMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.class
TreeBagMultimap<K,V>
Deprecated.in 5.0. -
Uses of BagMultimap in org.eclipse.collections.impl.multimap.bag.sorted
Classes in org.eclipse.collections.impl.multimap.bag.sorted that implement BagMultimap Modifier and Type Class Description class
TreeBagMultimap<K,V>
Deprecated.in 7.0. -
Uses of BagMultimap in org.eclipse.collections.impl.multimap.bag.sorted.immutable
Classes in org.eclipse.collections.impl.multimap.bag.sorted.immutable that implement BagMultimap Modifier and Type Class Description class
ImmutableSortedBagMultimapImpl<K,V>
-
Uses of BagMultimap in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Classes in org.eclipse.collections.impl.multimap.bag.sorted.mutable that implement BagMultimap Modifier and Type Class Description class
SynchronizedSortedBagMultimap<K,V>
class
TreeBagMultimap<K,V>
-
Uses of BagMultimap in org.eclipse.collections.impl.multimap.bag.strategy
Classes in org.eclipse.collections.impl.multimap.bag.strategy that implement BagMultimap Modifier and Type Class Description class
HashBagMultimapWithHashingStrategy<K,V>
-
Uses of BagMultimap in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type BagMultimap Modifier and Type Method Description static <K, V> void
Verify. assertBagMultimapsEqual(String multimapName, BagMultimap<K,V> expectedBagMultimap, BagMultimap<K,V> actualBagMultimap)
static <K, V> void
Verify. assertBagMultimapsEqual(BagMultimap<K,V> expectedBagMultimap, BagMultimap<K,V> actualBagMultimap)
-
Uses of BagMultimap in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type BagMultimap Modifier and Type Method Description static <K, V> HashBagMultimap<V,K>
Iterate. flip(BagMultimap<K,V> bagMultimap)
Flip the keys and values of the multimap.