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 theSetMultimapinterface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimapinterface.org.eclipse.collections.impl.multimap.set.strategy This package contains implementations of theSetMultimapinterface 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 containsSerializeTestHelperandVerifyclasses.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 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 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 interfaceImmutableSortedSetMultimap<K,V>interfaceMutableSortedSetMultimap<K,V>interfaceSortedSetMultimap<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 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.sorted
Classes 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.strategy
Classes 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.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.
-