| Package | Description |
|---|---|
| org.eclipse.collections.api.collection | |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.collections.api.multimap |
This package contains interfaces for
Multimap. |
| org.eclipse.collections.api.multimap.bag |
This package contains interfaces for
BagMultimap. |
| org.eclipse.collections.api.multimap.list |
This package contains interfaces for
ListMultimap. |
| org.eclipse.collections.api.multimap.set |
This package contains interfaces for
SetMultimap. |
| org.eclipse.collections.api.multimap.sortedbag |
This package contains interfaces for
SortedBagMultimap. |
| org.eclipse.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap. |
| Modifier and Type | Method and Description |
|---|---|
<V> ImmutableMultimap<V,T> |
ImmutableCollection.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableMultimap<V,T> |
ImmutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableMultimap<V,K> |
ImmutableMapIterable.flip() |
<V1> ImmutableMultimap<V1,V> |
ImmutableMapIterable.groupBy(Function<? super V,? extends V1> function) |
<V1> ImmutableMultimap<V1,V> |
ImmutableMapIterable.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
| Modifier and Type | Method and Description |
|---|---|
<K2,V2> ImmutableMultimap<K2,V2> |
ImmutableMultimap.collectKeyMultiValues(Function<? super K,? extends K2> keyFunction,
Function<? super V,? extends V2> valueFunction) |
<K2,V2> ImmutableMultimap<K2,V2> |
ImmutableMultimap.collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function) |
<V2> ImmutableMultimap<K,V2> |
ImmutableMultimap.collectValues(Function<? super V,? extends V2> function) |
ImmutableMultimap<V,K> |
ImmutableMultimap.flip() |
ImmutableMultimap<K,V> |
ImmutableMultimap.newEmpty() |
default ImmutableMultimap<K,V> |
ImmutableMultimap.newWith(K key,
V value) |
default ImmutableMultimap<K,V> |
ImmutableMultimap.newWithAll(K key,
Iterable<? extends V> values) |
default ImmutableMultimap<K,V> |
ImmutableMultimap.newWithout(Object key,
Object value) |
default ImmutableMultimap<K,V> |
ImmutableMultimap.newWithoutAll(Object key) |
ImmutableMultimap<K,V> |
ImmutableMultimap.rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableMultimap<K,V> |
ImmutableMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableMultimap<K,V> |
ImmutableMultimap.selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate) |
ImmutableMultimap<K,V> |
ImmutableMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableMultimap<K,V> |
Multimap.toImmutable()
Returns an immutable copy of this Multimap if it is not already immutable.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableBagIterableMultimap<K,V> |
interface |
ImmutableBagMultimap<K,V> |
| Modifier and Type | Method and Description |
|---|---|
<V2> ImmutableMultimap<K,V2> |
ImmutableBagIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableListMultimap<K,V> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSetIterableMultimap<K,V> |
interface |
ImmutableSetMultimap<K,V> |
| Modifier and Type | Method and Description |
|---|---|
<V2> ImmutableMultimap<K,V2> |
ImmutableSetIterableMultimap.collectValues(Function<? super V,? extends V2> function) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSortedBagMultimap<K,V> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableSortedSetMultimap<K,V> |
Copyright © 2004–2021. All rights reserved.