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.bimap.immutable | |
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 the
ImmutableMap 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.set.immutable |
This package package contains the implementations of
ImmutableSet . |
Modifier and Type | Method and 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 Iterable<V1>> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<V,K> |
ImmutableMap.flip() |
Modifier and Type | Method and 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,
Iterable<? extends V> values) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.newWithout(Object key,
Object value) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.newWithoutAll(Object key) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetMultimap<K,V> |
UnsortedSetMultimap.toImmutable() |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<V,K> |
ImmutableSortedSetMultimap.flip() |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableSetMultimap<V,T> |
ImmutableSet.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSetMultimap<V,T> |
ImmutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and 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 Iterable<VV>> function) |
Modifier and Type | Field and Description |
---|---|
static ImmutableSetMultimap<Object,Object> |
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory.EMPTY |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableSetMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory.empty() |
<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) |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<V,K> |
AbstractImmutableMap.flip() |
Modifier and Type | Class and Description |
---|---|
class |
ImmutableSetMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.
|
Modifier and Type | Method and 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,
Iterable<? extends V> values) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.newWithout(Object key,
Object value) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.newWithoutAll(Object key) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.selectKeysValues(Predicate2<? super K,? super V> predicate) |
ImmutableSetMultimap<K,V> |
SynchronizedPutUnifiedSetMultimap.toImmutable() |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.toImmutable() |
ImmutableSetMultimap<K,V> |
AbstractMutableSetMultimap.toImmutable() |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<V,K> |
ImmutableSortedSetMultimapImpl.flip() |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableSetMultimap<V,T> |
AbstractImmutableSet.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSetMultimap<V,T> |
AbstractImmutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Copyright © 2004–2016. All rights reserved.