Package | Description |
---|---|
org.eclipse.collections.api.bimap |
This package contains interfaces for BiMap API.
|
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.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.test |
This package contains
SerializeTestHelper and Verify classes. |
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 |
---|---|
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 Iterable<V1>> function) |
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableSetIterableMultimap<K,V> |
interface |
ImmutableSetMultimap<K,V> |
interface |
MutableSetIterableMultimap<K,V> |
interface |
MutableSetMultimap<K,V> |
interface |
UnsortedSetMultimap<K,V> |
Modifier and Type | Method and Description |
---|---|
SetMultimap<V,K> |
SetMultimap.flip() |
SetMultimap<K,V> |
SetMultimap.newEmpty() |
SetMultimap<K,V> |
SetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
SetMultimap<K,V> |
SetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
SetMultimap<K,V> |
SetMultimap.selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
SetMultimap<K,V> |
SetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableSortedSetMultimap<K,V> |
interface |
MutableSortedSetMultimap<K,V> |
interface |
SortedSetMultimap<K,V> |
Modifier and Type | Method and Description |
---|---|
<V> SetMultimap<V,T> |
ParallelSetIterable.groupBy(Function<? super T,? extends V> function) |
<V> SetMultimap<V,T> |
ParallelSetIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableSetMultimap<K,V> |
class |
ImmutableSetMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.
|
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 | Class and Description |
---|---|
class |
ImmutableSortedSetMultimapImpl<K,V>
The default ImmutableSortedSetMultimap implementation.
|
class |
SynchronizedPutTreeSortedSetMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
class |
TreeSortedSetMultimap<K,V> |
Modifier and Type | Class and Description |
---|---|
class |
UnifiedSetWithHashingStrategyMultimap<K,V> |
Modifier and Type | Method and Description |
---|---|
static <K,V> void |
Verify.assertSetMultimapsEqual(SetMultimap<K,V> expectedSetMultimap,
SetMultimap<K,V> actualSetMultimap) |
static <K,V> void |
Verify.assertSetMultimapsEqual(SetMultimap<K,V> expectedSetMultimap,
SetMultimap<K,V> actualSetMultimap) |
static <K,V> void |
Verify.assertSetMultimapsEqual(String multimapName,
SetMultimap<K,V> expectedSetMultimap,
SetMultimap<K,V> actualSetMultimap) |
static <K,V> void |
Verify.assertSetMultimapsEqual(String multimapName,
SetMultimap<K,V> expectedSetMultimap,
SetMultimap<K,V> actualSetMultimap) |
Modifier and Type | Method and Description |
---|---|
static <K,V> UnifiedSetMultimap<V,K> |
Iterate.flip(SetMultimap<K,V> setMultimap)
Flip the keys and values of the multimap.
|
Copyright © 2004–2016. All rights reserved.