Uses of Interface
org.eclipse.collections.api.multimap.set.SetMultimap
-
Packages that use SetMultimap Package Description org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap
.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap
.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.impl.multimap.set This package contains implementations of theSetMultimap
interface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
interface.org.eclipse.collections.impl.multimap.set.strategy This package contains implementations of theSetMultimap
interface which use a set with user-definedHashingStrategy
as their underlying store for the multiple values of a given key.org.eclipse.collections.impl.test This package containsSerializeTestHelper
andVerify
classes.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections. -
-
Uses of SetMultimap in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return SetMultimap Modifier and Type Method Description SetMultimap<V,K>
BiMap. flip()
<V1> SetMultimap<V1,V>
BiMap. groupBy(Function<? super V,? extends V1> function)
<V1> SetMultimap<V1,V>
BiMap. groupByEach(Function<? super V,? extends java.lang.Iterable<V1>> function)
-
Uses of SetMultimap in org.eclipse.collections.api.multimap.set
Subinterfaces of SetMultimap in org.eclipse.collections.api.multimap.set Modifier and Type Interface Description interface
ImmutableSetIterableMultimap<K,V>
interface
ImmutableSetMultimap<K,V>
interface
MutableSetIterableMultimap<K,V>
interface
MutableSetMultimap<K,V>
interface
UnsortedSetMultimap<K,V>
Methods in org.eclipse.collections.api.multimap.set that return SetMultimap Modifier and Type Method Description SetMultimap<V,K>
SetMultimap. flip()
SetMultimap<K,V>
SetMultimap. newEmpty()
SetMultimap<K,V>
SetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
SetMultimap<K,V>
SetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
SetMultimap<K,V>
SetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
SetMultimap<K,V>
SetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
-
Uses of SetMultimap in org.eclipse.collections.api.multimap.sortedset
Subinterfaces of SetMultimap in org.eclipse.collections.api.multimap.sortedset Modifier and Type Interface Description interface
ImmutableSortedSetMultimap<K,V>
interface
MutableSortedSetMultimap<K,V>
interface
SortedSetMultimap<K,V>
-
Uses of SetMultimap in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return SetMultimap Modifier and Type Method Description <V> SetMultimap<V,T>
ParallelSetIterable. groupBy(Function<? super T,? extends V> function)
<V> SetMultimap<V,T>
ParallelSetIterable. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of SetMultimap in org.eclipse.collections.impl.multimap.set
Classes in org.eclipse.collections.impl.multimap.set that implement SetMultimap Modifier and Type Class Description class
AbstractMutableSetMultimap<K,V>
class
ImmutableSetMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.class
MultiReaderUnifiedSetMultimap<K,V>
class
SynchronizedPutUnifiedSetMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.class
SynchronizedSetMultimap<K,V>
class
UnifiedSetMultimap<K,V>
-
Uses of SetMultimap in org.eclipse.collections.impl.multimap.set.sorted
Classes in org.eclipse.collections.impl.multimap.set.sorted that implement SetMultimap Modifier and Type Class Description class
ImmutableSortedSetMultimapImpl<K,V>
The default ImmutableSortedSetMultimap implementation.class
SynchronizedPutTreeSortedSetMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.class
SynchronizedSortedSetMultimap<K,V>
class
TreeSortedSetMultimap<K,V>
-
Uses of SetMultimap in org.eclipse.collections.impl.multimap.set.strategy
Classes in org.eclipse.collections.impl.multimap.set.strategy that implement SetMultimap Modifier and Type Class Description class
UnifiedSetWithHashingStrategyMultimap<K,V>
-
Uses of SetMultimap in org.eclipse.collections.impl.test
Methods in org.eclipse.collections.impl.test with parameters of type SetMultimap Modifier and Type Method Description static <K,V>
voidVerify. assertSetMultimapsEqual(java.lang.String multimapName, SetMultimap<K,V> expectedSetMultimap, SetMultimap<K,V> actualSetMultimap)
static <K,V>
voidVerify. assertSetMultimapsEqual(SetMultimap<K,V> expectedSetMultimap, SetMultimap<K,V> actualSetMultimap)
-
Uses of SetMultimap in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type SetMultimap Modifier and Type Method Description static <K,V>
UnifiedSetMultimap<V,K>Iterate. flip(SetMultimap<K,V> setMultimap)
Flip the keys and values of the multimap.
-