Uses of Interface
org.eclipse.collections.api.multimap.set.ImmutableSetMultimap
-
Packages that use ImmutableSetMultimap Package Description org.eclipse.collections.api.bimap This package contains interfaces for BiMap API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
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.bimap.immutable org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.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.set.immutable This package contains the implementations ofImmutableSet
. -
-
Uses of ImmutableSetMultimap in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
ImmutableBiMap. flip()
<V1> ImmutableSetMultimap<V1,V>
ImmutableBiMap. groupBy(Function<? super V,? extends V1> function)
<V1> ImmutableSetMultimap<V1,V>
ImmutableBiMap. groupByEach(Function<? super V,? extends java.lang.Iterable<V1>> function)
-
Uses of ImmutableSetMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
ImmutableMap. flip()
-
Uses of ImmutableSetMultimap in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
ImmutableSetMultimap. flip()
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. newEmpty()
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. newWith(K key, V value)
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. newWithAll(K key, java.lang.Iterable<? extends V> values)
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. newWithout(java.lang.Object key, java.lang.Object value)
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. newWithoutAll(java.lang.Object key)
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableSetMultimap<K,V>
ImmutableSetMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableSetMultimap<K,V>
UnsortedSetMultimap. toImmutable()
-
Uses of ImmutableSetMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
ImmutableSortedSetMultimap. flip()
-
Uses of ImmutableSetMultimap in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableSetMultimap Modifier and Type Method Description <V> ImmutableSetMultimap<V,T>
ImmutableSet. groupBy(Function<? super T,? extends V> function)
<V> ImmutableSetMultimap<V,T>
ImmutableSet. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of ImmutableSetMultimap in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
AbstractImmutableBiMap. flip()
<VV> ImmutableSetMultimap<VV,V>
AbstractImmutableBiMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableSetMultimap<VV,V>
AbstractImmutableBiMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
-
Uses of ImmutableSetMultimap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableSetMultimap Modifier and Type Method Description static <T,K>
java.util.stream.Collector<T,?,ImmutableSetMultimap<K,T>>Collectors2. toImmutableSetMultimap(Function<? super T,? extends K> groupBy)
Returns the elements as an ImmutableSetMultimap grouping each element using the specified groupBy Function.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableSetMultimap<K,V>>Collectors2. toImmutableSetMultimap(Function<? super T,? extends K> groupBy, Function<? super T,? extends V> valueFunction)
Returns the elements as an ImmutableSetMultimap grouping each element using the specified groupBy Function and converting each element to the value returned by applying the specified Function valueFunction. -
Uses of ImmutableSetMultimap in org.eclipse.collections.impl.factory
Fields in org.eclipse.collections.impl.factory declared as ImmutableSetMultimap Modifier and Type Field Description private static ImmutableSetMultimap<java.lang.Object,java.lang.Object>
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. EMPTY
Methods in org.eclipse.collections.impl.factory that return ImmutableSetMultimap Modifier and Type Method Description <K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. empty()
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. of()
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. of(K key, V value)
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. of(K key1, V value1, K key2, V value2)
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. of(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. with()
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. with(K key, V value)
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. with(K key1, V value1, K key2, V value2)
<K,V>
ImmutableSetMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory. with(K key1, V value1, K key2, V value2, K key3, V value3)
-
Uses of ImmutableSetMultimap in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
AbstractImmutableMap. flip()
-
Uses of ImmutableSetMultimap in org.eclipse.collections.impl.multimap.set
Classes in org.eclipse.collections.impl.multimap.set that implement ImmutableSetMultimap Modifier and Type Class Description class
ImmutableSetMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.Methods in org.eclipse.collections.impl.multimap.set that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
ImmutableSetMultimapImpl. flip()
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. newEmpty()
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. newWith(K key, V value)
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. newWithAll(K key, java.lang.Iterable<? extends V> values)
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. newWithout(java.lang.Object key, java.lang.Object value)
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. newWithoutAll(java.lang.Object key)
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableSetMultimap<K,V>
AbstractMutableSetMultimap. toImmutable()
ImmutableSetMultimap<K,V>
ImmutableSetMultimapImpl. toImmutable()
ImmutableSetMultimap<K,V>
SynchronizedPutUnifiedSetMultimap. toImmutable()
ImmutableSetMultimap<K,V>
SynchronizedSetMultimap. toImmutable()
-
Uses of ImmutableSetMultimap in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return ImmutableSetMultimap Modifier and Type Method Description ImmutableSetMultimap<V,K>
ImmutableSortedSetMultimapImpl. flip()
-
Uses of ImmutableSetMultimap in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable that return ImmutableSetMultimap Modifier and Type Method Description <V> ImmutableSetMultimap<V,T>
AbstractImmutableSet. groupBy(Function<? super T,? extends V> function)
<V> ImmutableSetMultimap<V,T>
AbstractImmutableSet. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-