Package | Description |
---|---|
com.gs.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
com.gs.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
com.gs.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
com.gs.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Method and Description |
---|---|
<V> FastListMultimap<V,T> |
RandomAccessListAdapter.groupBy(Function<? super T,? extends V> function) |
<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.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> FastListMultimap<V,T> |
AbstractMutableList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> FastListMultimap<V,T> |
ArrayListAdapter.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
FastListMultimap<K,V> |
FastListMultimap.newEmpty() |
static <K,V> FastListMultimap<K,V> |
FastListMultimap.newMultimap() |
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) |
Modifier and Type | Method and Description |
---|---|
static <T,V> FastListMultimap<V,T> |
ArrayListIterate.groupBy(ArrayList<T> list,
Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
ListIterate.groupBy(List<T> list,
Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
ArrayIterate.groupBy(T[] array,
Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
ArrayListIterate.groupByEach(ArrayList<T> list,
Function<? super T,? extends Iterable<V>> function) |
static <T,V> FastListMultimap<V,T> |
ListIterate.groupByEach(List<T> list,
Function<? super T,? extends Iterable<V>> function) |
static <T,V> FastListMultimap<V,T> |
ArrayIterate.groupByEach(T[] array,
Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
static <T,V> FastListMultimap<V,T> |
IterableIterate.groupBy(Iterable<T> iterable,
Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
RandomAccessListIterate.groupBy(List<T> list,
Function<? super T,? extends V> function) |
static <T,V> FastListMultimap<V,T> |
IterableIterate.groupByEach(Iterable<T> iterable,
Function<? super T,? extends Iterable<V>> function) |
static <T,V> FastListMultimap<V,T> |
RandomAccessListIterate.groupByEach(List<T> list,
Function<? super T,? extends Iterable<V>> function) |
Copyright © 2004–2017. All rights reserved.