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.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
com.gs.collections.impl.map.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableListMultimap<V,T> |
ImmutableList.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableListMultimap<V,T> |
ImmutableList.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<VV> ImmutableListMultimap<VV,V> |
ImmutableSortedMap.groupBy(Function<? super V,? extends VV> function) |
<VV> ImmutableListMultimap<VV,V> |
ImmutableSortedMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableListMultimap<K,V> |
ImmutableListMultimap.newEmpty() |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.newWith(K key,
V value) |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.newWithAll(K key,
Iterable<? extends V> values) |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.newWithout(Object key,
Object value) |
ImmutableListMultimap<K,V> |
ImmutableListMultimap.newWithoutAll(Object key) |
ImmutableListMultimap<K,V> |
ListMultimap.toImmutable() |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableListMultimap<V,T> |
ImmutableStack.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableListMultimap<V,T> |
ImmutableStack.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Field and Description |
---|---|
static ImmutableListMultimap<Object,Object> |
Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory.EMPTY |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableListMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory.with() |
<K,V> ImmutableListMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory.with(K key,
V value) |
<K,V> ImmutableListMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableListMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableListMultimapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
Modifier and Type | Method and Description |
---|---|
<R> ImmutableListMultimap<R,V> |
AbstractImmutableSortedMap.groupBy(Function<? super V,? extends R> function) |
<R> ImmutableListMultimap<R,V> |
AbstractImmutableSortedMap.groupByEach(Function<? super V,? extends Iterable<R>> function) |
Modifier and Type | Class and Description |
---|---|
class |
ImmutableListMultimapImpl<K,V>
The default ImmutableListMultimap implementation.
|
Modifier and Type | Method and Description |
---|---|
ImmutableListMultimap<K,V> |
ImmutableListMultimapImpl.newEmpty() |
ImmutableListMultimap<K,V> |
ImmutableListMultimapImpl.newWith(K key,
V value) |
ImmutableListMultimap<K,V> |
ImmutableListMultimapImpl.newWithAll(K key,
Iterable<? extends V> values) |
ImmutableListMultimap<K,V> |
ImmutableListMultimapImpl.newWithout(Object key,
Object value) |
ImmutableListMultimap<K,V> |
ImmutableListMultimapImpl.newWithoutAll(Object key) |
ImmutableListMultimap<K,V> |
ImmutableListMultimapImpl.toImmutable() |
ImmutableListMultimap<K,V> |
FastListMultimap.toImmutable() |
ImmutableListMultimap<K,V> |
SynchronizedPutFastListMultimap.toImmutable() |
Copyright © 2004–2017. All rights reserved.