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 of
Map |
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.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
org.eclipse.collections.impl.multimap.set |
This package contains implementations of the
SetMultimap interface. |
org.eclipse.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
org.eclipse.collections.impl.multimap.set.strategy |
This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key. |
org.eclipse.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
MutableBiMap.flip() |
<V1> MutableSetMultimap<V1,V> |
MutableBiMap.groupBy(Function<? super V,? extends V1> function) |
<V1> MutableSetMultimap<V1,V> |
MutableBiMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
MutableMap.flip() |
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
MutableSetMultimap.flip() |
MutableSetMultimap<K,V> |
MutableSetMultimap.newEmpty() |
MutableSetMultimap<K,V> |
MutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
MutableSetMultimap<K,V> |
MutableSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSetMultimap<K,V> |
MutableSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
MutableSetMultimap<K,V> |
MutableSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableSetMultimap<K,V> |
UnsortedSetMultimap.toMutable() |
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
MutableSortedSetMultimap.flip() |
Modifier and Type | Method and Description |
---|---|
<V> MutableSetMultimap<V,T> |
MutableSet.groupBy(Function<? super T,? extends V> function) |
<V> MutableSetMultimap<V,T> |
MutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSetMultimapFactory.empty() |
<K,V> MutableSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSetMultimapFactory.with() |
<K,V> MutableSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSetMultimapFactory.with(K key,
V value) |
<K,V> MutableSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSetMultimapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableSetMultimap<K,V> |
Multimaps.MutableMultimaps.MutableSetMultimapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
UnmodifiableMutableMap.flip() |
MutableSetMultimap<V,K> |
AbstractMutableMap.flip() |
MutableSetMultimap<V,K> |
SynchronizedMutableMap.flip() |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableSetMultimap<K,V> |
class |
MultiReaderUnifiedSetMultimap<K,V> |
class |
SynchronizedPutUnifiedSetMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
class |
UnifiedSetMultimap<K,V> |
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
UnifiedSetMultimap.flip() |
MutableSetMultimap<V,K> |
SynchronizedPutUnifiedSetMultimap.flip() |
MutableSetMultimap<V,K> |
MultiReaderUnifiedSetMultimap.flip() |
MutableSetMultimap<K,V> |
SynchronizedPutUnifiedSetMultimap.toMutable() |
MutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.toMutable() |
MutableSetMultimap<K,V> |
AbstractMutableSetMultimap.toMutable() |
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
SynchronizedPutTreeSortedSetMultimap.flip() |
MutableSetMultimap<V,K> |
TreeSortedSetMultimap.flip() |
Modifier and Type | Class and Description |
---|---|
class |
UnifiedSetWithHashingStrategyMultimap<K,V> |
Modifier and Type | Method and Description |
---|---|
MutableSetMultimap<V,K> |
UnifiedSetWithHashingStrategyMultimap.flip() |
Modifier and Type | Method and Description |
---|---|
<V> MutableSetMultimap<V,T> |
SynchronizedMutableSet.groupBy(Function<? super T,? extends V> function) |
<V> MutableSetMultimap<V,T> |
MultiReaderUnifiedSet.groupBy(Function<? super T,? extends V> function) |
<V> MutableSetMultimap<V,T> |
UnmodifiableMutableSet.groupBy(Function<? super T,? extends V> function) |
<V> MutableSetMultimap<V,T> |
SynchronizedMutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSetMultimap<V,T> |
MultiReaderUnifiedSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableSetMultimap<V,T> |
UnmodifiableMutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
static <K,V> MutableSetMultimap<V,K> |
MapIterate.flip(MapIterable<K,V> iMap) |
Copyright © 2004–2016. All rights reserved.