Uses of Interface
org.eclipse.collections.api.multimap.set.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 for  SetMultimap. | 
| org.eclipse.collections.api.multimap.sortedset | This package contains interfaces for  SortedSetMultimap. | 
| org.eclipse.collections.api.set | This package contains interfaces for set API which enhance the performance and functionality of  Set. | 
| org.eclipse.collections.impl.multimap.set | This package contains implementations of the  SetMultimapinterface. | 
| org.eclipse.collections.impl.multimap.set.sorted | This package contains implementations of the  SortedSetMultimapinterface. | 
| org.eclipse.collections.impl.multimap.set.strategy | This package contains implementations of the  SetMultimapinterface which use a set with user-definedHashingStrategyas their underlying store for the multiple values of a given key. | 
| org.eclipse.collections.impl.test | This package contains  SerializeTestHelperandVerifyclasses. | 
| 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.bimapMethods 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 Iterable<V1>> function)
- 
Uses of SetMultimap in org.eclipse.collections.api.multimap.setSubinterfaces of SetMultimap in org.eclipse.collections.api.multimap.set Modifier and Type Interface Description interfaceImmutableSetIterableMultimap<K,V>interfaceImmutableSetMultimap<K,V>interfaceMutableSetIterableMultimap<K,V>interfaceMutableSetMultimap<K,V>interfaceUnsortedSetMultimap<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 Iterable<V>> predicate)SetMultimap<K,V>SetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)SetMultimap<K,V>SetMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)SetMultimap<K,V>SetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
- 
Uses of SetMultimap in org.eclipse.collections.api.multimap.sortedsetSubinterfaces of SetMultimap in org.eclipse.collections.api.multimap.sortedset Modifier and Type Interface Description interfaceImmutableSortedSetMultimap<K,V>interfaceMutableSortedSetMultimap<K,V>interfaceSortedSetMultimap<K,V>
- 
Uses of SetMultimap in org.eclipse.collections.api.setMethods 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 Iterable<V>> function)
- 
Uses of SetMultimap in org.eclipse.collections.impl.multimap.setClasses in org.eclipse.collections.impl.multimap.set that implement SetMultimap Modifier and Type Class Description classAbstractMutableSetMultimap<K,V>classImmutableSetMultimapImpl<K,V>The default ImmutableBagMultimap implementation.classMultiReaderUnifiedSetMultimap<K,V>classSynchronizedPutUnifiedSetMultimap<K,V>A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.classSynchronizedSetMultimap<K,V>classUnifiedSetMultimap<K,V>
- 
Uses of SetMultimap in org.eclipse.collections.impl.multimap.set.sortedClasses in org.eclipse.collections.impl.multimap.set.sorted that implement SetMultimap Modifier and Type Class Description classImmutableSortedSetMultimapImpl<K,V>The default ImmutableSortedSetMultimap implementation.classSynchronizedPutTreeSortedSetMultimap<K,V>A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.classSynchronizedSortedSetMultimap<K,V>classTreeSortedSetMultimap<K,V>
- 
Uses of SetMultimap in org.eclipse.collections.impl.multimap.set.strategyClasses in org.eclipse.collections.impl.multimap.set.strategy that implement SetMultimap Modifier and Type Class Description classUnifiedSetWithHashingStrategyMultimap<K,V>
- 
Uses of SetMultimap in org.eclipse.collections.impl.testMethods in org.eclipse.collections.impl.test with parameters of type SetMultimap Modifier and Type Method Description static <K, V> voidVerify. assertSetMultimapsEqual(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.utilityMethods 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.