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.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
Modifier and Type | Method and Description |
---|---|
<V> MutableListMultimap<V,T> |
MutableList.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
MutableList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
MutableListMultimap<V,K> |
MutableOrderedMap.flip() |
<V1> MutableListMultimap<V1,V> |
MutableOrderedMap.groupBy(Function<? super V,? extends V1> function) |
<V1> MutableListMultimap<V1,V> |
MutableOrderedMap.groupByEach(Function<? super V,? extends Iterable<V1>> function) |
Modifier and Type | Method and Description |
---|---|
<VV> MutableListMultimap<VV,V> |
MutableSortedMap.groupBy(Function<? super V,? extends VV> function) |
<VV> MutableListMultimap<VV,V> |
MutableSortedMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
Modifier and Type | Method and Description |
---|---|
<V2> MutableListMultimap<K,V2> |
MutableListMultimap.collectValues(Function<? super V,? extends V2> function) |
MutableListMultimap<K,V> |
MutableListMultimap.newEmpty() |
MutableListMultimap<K,V> |
MutableListMultimap.rejectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
MutableListMultimap<K,V> |
MutableListMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableListMultimap<K,V> |
MutableListMultimap.selectKeysMultiValues(Predicate2<? super K,? super Iterable<V>> predicate) |
MutableListMultimap<K,V> |
MutableListMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
MutableListMultimap<K,V> |
ListMultimap.toMutable() |
Modifier and Type | Method and Description |
---|---|
<V2> MutableListMultimap<K,V2> |
MutableSortedBagMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V2> MutableListMultimap<K,V2> |
MutableSortedSetMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method and Description |
---|---|
<V> MutableListMultimap<V,T> |
MutableStack.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
MutableStack.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> MutableListMultimap<K,V> |
Multimaps.MutableMultimaps.MutableListMultimapFactory.empty() |
<K,V> MutableListMultimap<K,V> |
Multimaps.MutableMultimaps.MutableListMultimapFactory.with() |
<K,V> MutableListMultimap<K,V> |
Multimaps.MutableMultimaps.MutableListMultimapFactory.with(K key,
V value) |
<K,V> MutableListMultimap<K,V> |
Multimaps.MutableMultimaps.MutableListMultimapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> MutableListMultimap<K,V> |
Multimaps.MutableMultimaps.MutableListMultimapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
Modifier and Type | Method and Description |
---|---|
<V> MutableListMultimap<V,T> |
AbstractListAdapter.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
UnmodifiableMutableList.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
MultiReaderFastList.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
SynchronizedMutableList.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
AbstractListAdapter.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableListMultimap<V,T> |
UnmodifiableMutableList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableListMultimap<V,T> |
MultiReaderFastList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableListMultimap<V,T> |
SynchronizedMutableList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<KK> MutableListMultimap<KK,V> |
SynchronizedSortedMap.groupBy(Function<? super V,? extends KK> function) |
<R> MutableListMultimap<R,V> |
UnmodifiableTreeMap.groupBy(Function<? super V,? extends R> function) |
<VV> MutableListMultimap<VV,V> |
AbstractMutableSortedMap.groupBy(Function<? super V,? extends VV> function) |
<KK> MutableListMultimap<KK,V> |
SynchronizedSortedMap.groupByEach(Function<? super V,? extends Iterable<KK>> function) |
<R> MutableListMultimap<R,V> |
UnmodifiableTreeMap.groupByEach(Function<? super V,? extends Iterable<R>> function) |
<VV> MutableListMultimap<VV,V> |
AbstractMutableSortedMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableListMultimap<K,V> |
class |
FastListMultimap<K,V> |
class |
MultiReaderFastListMultimap<K,V> |
class |
SynchronizedPutFastListMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
Modifier and Type | Method and Description |
---|---|
MutableListMultimap<K,V> |
ImmutableListMultimapImpl.toMutable() |
MutableListMultimap<K,V> |
SynchronizedPutFastListMultimap.toMutable() |
MutableListMultimap<K,V> |
AbstractMutableListMultimap.toMutable() |
Modifier and Type | Method and Description |
---|---|
<V> MutableListMultimap<V,T> |
ArrayStack.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
SynchronizedStack.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
UnmodifiableStack.groupBy(Function<? super T,? extends V> function) |
<V> MutableListMultimap<V,T> |
ArrayStack.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableListMultimap<V,T> |
SynchronizedStack.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> MutableListMultimap<V,T> |
UnmodifiableStack.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Copyright © 2004–2016. All rights reserved.