Package | Description |
---|---|
com.gs.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
com.gs.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
com.gs.collections.api.multimap.list |
This package contains interfaces for
ListMultimap . |
com.gs.collections.api.stack |
This package contains interfaces for stack API.
|
com.gs.collections.impl.lazy.parallel.list | |
com.gs.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
Modifier and Type | Method and Description |
---|---|
<V> ListMultimap<V,T> |
ListIterable.groupBy(Function<? super T,? extends V> function) |
<V> ListMultimap<V,T> |
ParallelListIterable.groupBy(Function<? super T,? extends V> function) |
<V> ListMultimap<V,T> |
ListIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
<V> ListMultimap<V,T> |
ParallelListIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<VV> ListMultimap<VV,V> |
SortedMapIterable.groupBy(Function<? super V,? extends VV> function) |
<VV> ListMultimap<VV,V> |
SortedMapIterable.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableListMultimap<K,V> |
interface |
MutableListMultimap<K,V> |
Modifier and Type | Method and Description |
---|---|
ListMultimap<K,V> |
ListMultimap.newEmpty() |
Modifier and Type | Method and Description |
---|---|
<V> ListMultimap<V,T> |
StackIterable.groupBy(Function<? super T,? extends V> function) |
<V> ListMultimap<V,T> |
StackIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<V> ListMultimap<V,T> |
AbstractParallelListIterable.groupBy(Function<? super T,? extends V> function) |
<V> ListMultimap<V,T> |
AbstractParallelListIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Class and Description |
---|---|
class |
FastListMultimap<K,V> |
class |
ImmutableListMultimapImpl<K,V>
The default ImmutableListMultimap implementation.
|
class |
SynchronizedPutFastListMultimap<K,V>
A Multimap that is optimized for parallel writes, but is not protected for concurrent reads.
|
Copyright © 2004–2018. All rights reserved.