Uses of Interface
org.eclipse.collections.api.multimap.list.ImmutableListMultimap
| Package | Description |
|---|---|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.multimap.list |
This package contains interfaces for
ListMultimap. |
| org.eclipse.collections.api.multimap.sortedbag |
This package contains interfaces for
SortedBagMultimap. |
| org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap. |
| org.eclipse.collections.api.stack |
This package contains interfaces for stack API.
|
| 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.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.multimap.bag.sorted.immutable | |
| org.eclipse.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
| org.eclipse.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
-
Uses of ImmutableListMultimap in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableListMultimap Modifier and Type Method Description <V> ImmutableListMultimap<V,T>ImmutableList. groupBy(Function<? super T,? extends V> function)<V> ImmutableListMultimap<V,T>ImmutableList. groupByEach(Function<? super T,? extends Iterable<V>> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableListMultimap Modifier and Type Method Description ImmutableListMultimap<V,K>ImmutableOrderedMap. flip()<V1> ImmutableListMultimap<V1,V>ImmutableOrderedMap. groupBy(Function<? super V,? extends V1> function)<V1> ImmutableListMultimap<V1,V>ImmutableOrderedMap. groupByEach(Function<? super V,? extends Iterable<V1>> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableListMultimap Modifier and Type Method Description <VV> ImmutableListMultimap<VV,V>ImmutableSortedMap. groupBy(Function<? super V,? extends VV> function)<VV> ImmutableListMultimap<VV,V>ImmutableSortedMap. groupByEach(Function<? super V,? extends Iterable<VV>> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return ImmutableListMultimap Modifier and Type Method Description <V2> ImmutableListMultimap<K,V2>ImmutableListMultimap. collectValues(Function<? super V,? extends V2> function)ImmutableListMultimap<K,V>ImmutableListMultimap. newEmpty()ImmutableListMultimap<K,V>ImmutableListMultimap. newWith(K key, V value)ImmutableListMultimap<K,V>ImmutableListMultimap. newWithAll(K key, Iterable<? extends V> values)ImmutableListMultimap<K,V>ImmutableListMultimap. newWithout(Object key, Object value)ImmutableListMultimap<K,V>ImmutableListMultimap. newWithoutAll(Object key)ImmutableListMultimap<K,V>ImmutableListMultimap. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableListMultimap<K,V>ImmutableListMultimap. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableListMultimap<K,V>ListMultimap. toImmutable() -
Uses of ImmutableListMultimap in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return ImmutableListMultimap Modifier and Type Method Description <V2> ImmutableListMultimap<K,V2>ImmutableSortedBagMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return ImmutableListMultimap Modifier and Type Method Description <V2> ImmutableListMultimap<K,V2>ImmutableSortedSetMultimap. collectValues(Function<? super V,? extends V2> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableListMultimap Modifier and Type Method Description <V> ImmutableListMultimap<V,T>ImmutableStack. groupBy(Function<? super T,? extends V> function)<V> ImmutableListMultimap<V,T>ImmutableStack. groupByEach(Function<? super T,? extends Iterable<V>> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableListMultimap Modifier and Type Method Description static <T, K> Collector<T,?,ImmutableListMultimap<K,T>>Collectors2. toImmutableListMultimap(Function<? super T,? extends K> groupBy)Returns the elements as an ImmutableListMultimap grouping each element using the specified groupBy Function.static <T, K, V> Collector<T,?,ImmutableListMultimap<K,V>>Collectors2. toImmutableListMultimap(Function<? super T,? extends K> groupBy, Function<? super T,? extends V> valueFunction)Returns the elements as an ImmutableListMultimap grouping each element using the specified groupBy Function and converting each element to the value returned by applying the specified Function valueFunction. -
Uses of ImmutableListMultimap in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return ImmutableListMultimap Modifier and Type Method Description <K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. empty()<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. of()<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. of(K key, V value)<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. of(K key1, V value1, K key2, V value2)<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. of(K key1, V value1, K key2, V value2, K key3, V value3)<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. with()<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. with(K key, V value)<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. with(K key1, V value1, K key2, V value2)<K, V> ImmutableListMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory. with(K key1, V value1, K key2, V value2, K key3, V value3) -
Uses of ImmutableListMultimap in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableListMultimap Modifier and Type Method Description <R> ImmutableListMultimap<R,V>AbstractImmutableSortedMap. groupBy(Function<? super V,? extends R> function)<R> ImmutableListMultimap<R,V>AbstractImmutableSortedMap. groupByEach(Function<? super V,? extends Iterable<R>> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.impl.multimap.bag.sorted.immutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.immutable that return ImmutableListMultimap Modifier and Type Method Description <V2> ImmutableListMultimap<K,V2>ImmutableSortedBagMultimapImpl. collectValues(Function<? super V,? extends V2> function) -
Uses of ImmutableListMultimap in org.eclipse.collections.impl.multimap.list
Classes in org.eclipse.collections.impl.multimap.list that implement ImmutableListMultimap Modifier and Type Class Description classImmutableListMultimapImpl<K,V>The default ImmutableListMultimap implementation.Methods in org.eclipse.collections.impl.multimap.list that return ImmutableListMultimap Modifier and Type Method Description <V2> ImmutableListMultimap<K,V2>ImmutableListMultimapImpl. collectValues(Function<? super V,? extends V2> function)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. newEmpty()ImmutableListMultimap<K,V>ImmutableListMultimapImpl. newWith(K key, V value)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. newWithAll(K key, Iterable<? extends V> values)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. newWithout(Object key, Object value)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. newWithoutAll(Object key)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate)ImmutableListMultimap<K,V>ImmutableListMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate)ImmutableListMultimap<K,V>AbstractMutableListMultimap. toImmutable()ImmutableListMultimap<K,V>ImmutableListMultimapImpl. toImmutable()ImmutableListMultimap<K,V>SynchronizedListMultimap. toImmutable()ImmutableListMultimap<K,V>SynchronizedPutFastListMultimap. toImmutable() -
Uses of ImmutableListMultimap in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return ImmutableListMultimap Modifier and Type Method Description <V2> ImmutableListMultimap<K,V2>ImmutableSortedSetMultimapImpl. collectValues(Function<? super V,? extends V2> function)