Package | Description |
---|---|
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.set |
This package contains interfaces for
SetMultimap . |
com.gs.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set . |
com.gs.collections.impl.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
com.gs.collections.impl.map.immutable |
This package contains implementations of the
ImmutableMap interface. |
com.gs.collections.impl.multimap.set |
This package contains implementations of the
SetMultimap interface. |
com.gs.collections.impl.multimap.set.strategy |
This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key. |
com.gs.collections.impl.set.immutable |
This package package contains the implementations of
ImmutableSet . |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<V,K> |
ImmutableMap.flip() |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.newEmpty() |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.newWith(K key,
V value) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.newWithAll(K key,
Iterable<? extends V> values) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.newWithout(Object key,
Object value) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimap.newWithoutAll(Object key) |
ImmutableSetMultimap<K,V> |
UnsortedSetMultimap.toImmutable() |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableSetMultimap<V,T> |
ImmutableSet.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSetMultimap<V,T> |
ImmutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Modifier and Type | Field and Description |
---|---|
static ImmutableSetMultimap<Object,Object> |
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory.EMPTY |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableSetMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory.with() |
<K,V> ImmutableSetMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory.with(K key,
V value) |
<K,V> ImmutableSetMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableSetMultimap<K,V> |
Multimaps.ImmutableMultimaps.ImmutableSetMultimapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<V,K> |
AbstractImmutableMap.flip() |
Modifier and Type | Class and Description |
---|---|
class |
ImmutableSetMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.
|
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.newEmpty() |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.newWith(K key,
V value) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.newWithAll(K key,
Iterable<? extends V> values) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.newWithout(Object key,
Object value) |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.newWithoutAll(Object key) |
ImmutableSetMultimap<K,V> |
UnifiedSetMultimap.toImmutable() |
ImmutableSetMultimap<K,V> |
SynchronizedPutUnifiedSetMultimap.toImmutable() |
ImmutableSetMultimap<K,V> |
ImmutableSetMultimapImpl.toImmutable() |
Modifier and Type | Method and Description |
---|---|
ImmutableSetMultimap<K,V> |
UnifiedSetWithHashingStrategyMultimap.toImmutable() |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableSetMultimap<V,T> |
AbstractImmutableSet.groupBy(Function<? super T,? extends V> function) |
<V> ImmutableSetMultimap<V,T> |
AbstractImmutableSet.groupByEach(Function<? super T,? extends Iterable<V>> function) |
Copyright © 2004–2018. All rights reserved.