Package | Description |
---|---|
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.multimap.bag |
This package contains implementations of the
BagMultimap interface. |
org.eclipse.collections.impl.multimap.bag.sorted | |
org.eclipse.collections.impl.multimap.bag.sorted.mutable | |
org.eclipse.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
org.eclipse.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Method | Description |
---|---|---|
<V> FastListMultimap<V,T> |
AbstractMutableList.groupBy(Function<? super T,? extends V> function) |
|
<V> FastListMultimap<V,T> |
ArrayListAdapter.groupBy(Function<? super T,? extends V> function) |
|
<V> FastListMultimap<V,T> |
FastList.groupBy(Function<? super T,? extends V> function) |
|
<V> FastListMultimap<V,T> |
RandomAccessListAdapter.groupBy(Function<? super T,? extends V> function) |
|
<V> FastListMultimap<V,T> |
AbstractMutableList.groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
|
<V> FastListMultimap<V,T> |
ArrayListAdapter.groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
|
<V> FastListMultimap<V,T> |
FastList.groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
|
<V> FastListMultimap<V,T> |
RandomAccessListAdapter.groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function) |
Modifier and Type | Method | Description |
---|---|---|
<V2> FastListMultimap<K,V2> |
TreeBagMultimap.collectValues(Function<? super V,? extends V2> function) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
<V2> FastListMultimap<K,V2> |
TreeBagMultimap.collectValues(Function<? super V,? extends V2> function) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
<V2> FastListMultimap<K,V2> |
TreeBagMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method | Description |
---|---|---|
<V2> FastListMultimap<K,V2> |
AbstractMutableListMultimap.collectValues(Function<? super V,? extends V2> function) |
|
<V2> FastListMultimap<K,V2> |
SynchronizedPutFastListMultimap.collectValues(Function<? super V,? extends V2> function) |
|
FastListMultimap<K,V> |
FastListMultimap.newEmpty() |
|
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap() |
|
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap(java.lang.Iterable<Pair<K,V>> inputIterable) |
|
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap(Multimap<? extends K,? extends V> multimap) |
|
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap(Pair<K,V>... pairs) |
|
FastListMultimap<K,V> |
FastListMultimap.rejectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
FastListMultimap<K,V> |
MultiReaderFastListMultimap.rejectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
FastListMultimap<K,V> |
SynchronizedPutFastListMultimap.rejectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
FastListMultimap<K,V> |
FastListMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
|
FastListMultimap<K,V> |
MultiReaderFastListMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
|
FastListMultimap<K,V> |
SynchronizedPutFastListMultimap.rejectKeysValues(Predicate2<? super K,? super V> predicate) |
|
FastListMultimap<K,V> |
FastListMultimap.selectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
FastListMultimap<K,V> |
MultiReaderFastListMultimap.selectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
FastListMultimap<K,V> |
SynchronizedPutFastListMultimap.selectKeysMultiValues(Predicate2<? super K,? super java.lang.Iterable<V>> predicate) |
|
FastListMultimap<K,V> |
FastListMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
|
FastListMultimap<K,V> |
MultiReaderFastListMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
|
FastListMultimap<K,V> |
SynchronizedPutFastListMultimap.selectKeysValues(Predicate2<? super K,? super V> predicate) |
Modifier and Type | Method | Description |
---|---|---|
<V2> FastListMultimap<K,V2> |
SynchronizedPutTreeSortedSetMultimap.collectValues(Function<? super V,? extends V2> function) |
|
<V2> FastListMultimap<K,V2> |
TreeSortedSetMultimap.collectValues(Function<? super V,? extends V2> function) |
Modifier and Type | Method | Description |
---|---|---|
static <T,V> FastListMultimap<V,T> |
ArrayIterate.groupBy(T[] array,
Function<? super T,? extends V> function) |
|
static <T,V> FastListMultimap<V,T> |
ArrayListIterate.groupBy(java.util.ArrayList<T> list,
Function<? super T,? extends V> function) |
|
static <T,V> FastListMultimap<V,T> |
ListIterate.groupBy(java.util.List<T> list,
Function<? super T,? extends V> function) |
|
static <T,V> FastListMultimap<V,T> |
ArrayIterate.groupByEach(T[] array,
Function<? super T,? extends java.lang.Iterable<V>> function) |
|
static <T,V> FastListMultimap<V,T> |
ArrayListIterate.groupByEach(java.util.ArrayList<T> list,
Function<? super T,? extends java.lang.Iterable<V>> function) |
|
static <T,V> FastListMultimap<V,T> |
ListIterate.groupByEach(java.util.List<T> list,
Function<? super T,? extends java.lang.Iterable<V>> function) |
Modifier and Type | Method | Description |
---|---|---|
static <T,V> FastListMultimap<V,T> |
IterableIterate.groupBy(java.lang.Iterable<T> iterable,
Function<? super T,? extends V> function) |
|
static <T,V> FastListMultimap<V,T> |
RandomAccessListIterate.groupBy(java.util.List<T> list,
Function<? super T,? extends V> function) |
|
static <T,V> FastListMultimap<V,T> |
IterableIterate.groupByEach(java.lang.Iterable<T> iterable,
Function<? super T,? extends java.lang.Iterable<V>> function) |
|
static <T,V> FastListMultimap<V,T> |
RandomAccessListIterate.groupByEach(java.util.List<T> list,
Function<? super T,? extends java.lang.Iterable<V>> function) |
Copyright © 2004–2017. All rights reserved.