Package | Description |
---|---|
com.gs.collections.api.collection | |
com.gs.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
com.gs.collections.api.multimap |
This package contains interfaces for
Multimap . |
com.gs.collections.api.multimap.bag |
This package contains interfaces for
BagMultimap . |
com.gs.collections.api.multimap.list |
This package contains interfaces for
ListMultimap . |
com.gs.collections.api.multimap.set |
This package contains interfaces for
SetMultimap . |
com.gs.collections.api.multimap.sortedbag |
This package contains interfaces for
SortedBagMultimap . |
com.gs.collections.api.multimap.sortedset |
This package contains interfaces for
SortedSetMultimap . |
com.gs.collections.impl.lazy |
This package contains implementations of the
LazyIterable interface. |
com.gs.collections.impl.map.immutable |
This package contains implementations of the
ImmutableMap interface. |
com.gs.collections.impl.multimap |
This package contains implementations of the
Multimap interface. |
com.gs.collections.impl.multimap.bag |
This package contains implementations of the
BagMultimap interface. |
com.gs.collections.impl.multimap.list |
This package contains implementations of the
ListMultimap interface. |
com.gs.collections.impl.multimap.set |
This package contains implementations of the
SetMultimap interface. |
com.gs.collections.impl.multimap.set.sorted |
This package contains implementations of the
SortedSetMultimap interface. |
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> ImmutableMultimap<V,T> |
ImmutableCollection.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableMultimap<V,T> |
ImmutableCollection.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<VV> ImmutableMultimap<VV,V> |
ImmutableMap.groupBy(Function<? super V,? extends VV> function) |
<VV> ImmutableMultimap<VV,V> |
ImmutableMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableMultimap<K,V> |
ImmutableMultimap.newEmpty() |
ImmutableMultimap<K,V> |
ImmutableMultimap.newWith(K key,
V value) |
ImmutableMultimap<K,V> |
ImmutableMultimap.newWithAll(K key,
Iterable<? extends V> values) |
ImmutableMultimap<K,V> |
ImmutableMultimap.newWithout(Object key,
Object value) |
ImmutableMultimap<K,V> |
ImmutableMultimap.newWithoutAll(Object key) |
ImmutableMultimap<K,V> |
Multimap.toImmutable()
Returns an immutable copy of this Multimap if it is not already immutable.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableBagMultimap<K,V> |
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableListMultimap<K,V> |
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableSetMultimap<K,V> |
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableSortedBagMultimap<K,V> |
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableSortedSetMultimap<K,V> |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableMultimap<V,T> |
AbstractLazyIterable.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableMultimap<V,T> |
AbstractLazyIterable.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Method and Description |
---|---|
<VV> ImmutableMultimap<VV,V> |
AbstractImmutableMap.groupBy(Function<? super V,? extends VV> function) |
<VV> ImmutableMultimap<VV,V> |
AbstractImmutableMap.groupByEach(Function<? super V,? extends Iterable<VV>> function) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractImmutableMultimap<K,V,C extends ImmutableCollection<V>> |
Modifier and Type | Method and Description |
---|---|
ImmutableMultimap<K,V> |
AbstractImmutableMultimap.newWith(K key,
V value) |
ImmutableMultimap<K,V> |
AbstractImmutableMultimap.newWithAll(K key,
Iterable<? extends V> values) |
ImmutableMultimap<K,V> |
AbstractImmutableMultimap.newWithout(Object key,
Object value) |
ImmutableMultimap<K,V> |
AbstractImmutableMultimap.newWithoutAll(Object key) |
ImmutableMultimap<K,V> |
AbstractImmutableMultimap.toImmutable() |
Modifier and Type | Class and Description |
---|---|
class |
ImmutableBagMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.
|
Modifier and Type | Class and Description |
---|---|
class |
ImmutableListMultimapImpl<K,V>
The default ImmutableListMultimap implementation.
|
Modifier and Type | Class and Description |
---|---|
class |
ImmutableSetMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.
|
Modifier and Type | Class and Description |
---|---|
class |
ImmutableSortedSetMultimapImpl<K,V>
The default ImmutableSortedSetMultimap implementation.
|
Modifier and Type | Method and Description |
---|---|
static <T,V> ImmutableMultimap<V,T> |
IteratorIterate.groupBy(Iterator<T> iterator,
Function<? super T,? extends V> function) |
Copyright © 2004–2016. All rights reserved.