Package | Description |
---|---|
com.gs.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
com.gs.collections.api.bimap |
This package contains interfaces for BiMap API.
|
com.gs.collections.api.collection | |
com.gs.collections.api.factory.map |
This package contains factory API for creating instances of type
MapIterable . |
com.gs.collections.api.factory.map.strategy |
This package contains factory API for creating instances of maps with user defined
HashingStrategy s. |
com.gs.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
com.gs.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
com.gs.collections.api.stack |
This package contains interfaces for stack API.
|
com.gs.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
com.gs.collections.impl.collection.immutable |
This package contains implementations of the
ImmutableCollection interface. |
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.map.mutable |
This package contains implementations of the
MutableMap interface. |
com.gs.collections.impl.map.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.map.strategy.immutable |
This package contains immutable map implementations backed by hashtables that rely on
HashingStrategy s provided by
the developer to compute the hashCode and equals for the objects stored in the map. |
com.gs.collections.impl.map.strategy.mutable |
This package contains mutable map implementations backed by hashtables that rely on
HashingStrategy s provided by
the developer to compute the hashCode and equals for the objects stored in the map. |
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.set.immutable |
This package package contains the implementations of
ImmutableSet . |
com.gs.collections.impl.test |
This package contains
SerializeTestHelper and Verify classes. |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableMap<K,V> |
ImmutableSortedBag.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator)
Can return an ImmutableMap that's backed by a LinkedHashMap.
|
<K,V> ImmutableMap<K,V> |
ImmutableSortedBag.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator)
Can return an ImmutableMap that's backed by a LinkedHashMap.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableBiMap<K,V>
A
BiMap whose contents cannot be altered after initialization. |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableMap<K,V> |
ImmutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> ImmutableMap<K,V> |
ImmutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
<V> ImmutableMap<V,T> |
ImmutableCollection.groupByUniqueKey(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.of()
Same as
ImmutableMapFactory.with() . |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.of(K key,
V value)
|
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.of(K key1,
V value1,
K key2,
V value2)
|
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
|
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
|
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.ofAll(Map<K,V> map)
|
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.ofMap(Map<K,V> map) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.with() |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.with(K key,
V value) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.with(K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactory.withAll(Map<K,V> map) |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy)
|
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy,
K key,
V value)
|
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2)
|
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3)
|
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4)
|
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.ofAll(Map<K,V> map)
|
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.ofMap(Map<K,V> map) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy,
K key,
V value) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactory.withAll(Map<K,V> map) |
Modifier and Type | Method and Description |
---|---|
<K2,V2> ImmutableMap<K2,V2> |
ImmutableMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
<R> ImmutableMap<K,R> |
ImmutableMap.collectValues(Function2<? super K,? super V,? extends R> function) |
ImmutableMap<V,K> |
ImmutableMap.flipUniqueValues() |
<V1> ImmutableMap<V1,V> |
ImmutableMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
ImmutableMap<K,V> |
ImmutableMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
ImmutableMap<K,V> |
ImmutableMap.newWithAllKeyValues(Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
ImmutableMap<K,V> |
ImmutableMap.newWithKeyValue(K key,
V value) |
ImmutableMap<K,V> |
ImmutableMap.newWithoutAllKeys(Iterable<? extends K> keys) |
ImmutableMap<K,V> |
ImmutableMap.newWithoutKey(K key) |
ImmutableMap<K,V> |
ImmutableMap.reject(Predicate2<? super K,? super V> predicate) |
ImmutableMap<K,V> |
ImmutableMap.select(Predicate2<? super K,? super V> predicate) |
ImmutableMap<K,V> |
UnsortedMapIterable.toImmutable()
Converts the UnsortedMapIterable to an immutable implementation.
|
ImmutableMap<K,V> |
MutableMap.toImmutable()
Returns an immutable copy of this map.
|
Modifier and Type | Method and Description |
---|---|
<K2,V2> ImmutableMap<K2,V2> |
ImmutableSortedMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableSortedMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
ImmutableSortedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
ImmutableMap<V,K> |
ImmutableSortedMap.flipUniqueValues() |
<VV> ImmutableMap<VV,V> |
ImmutableSortedMap.groupByUniqueKey(Function<? super V,? extends VV> function) |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableMap<V,T> |
ImmutableStack.groupByUniqueKey(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableMap<V,T> |
ImmutableHashBag.groupByUniqueKey(Function<? super T,? extends V> function) |
<V> ImmutableMap<V,T> |
ImmutableArrayBag.groupByUniqueKey(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
<K,V> ImmutableMap<K,V> |
AbstractImmutableCollection.aggregateBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Function2<? super V,? super T,? extends V> nonMutatingAggregator) |
<K,V> ImmutableMap<K,V> |
AbstractImmutableCollection.aggregateInPlaceBy(Function<? super T,? extends K> groupBy,
Function0<? extends V> zeroValueFactory,
Procedure2<? super V,? super T> mutatingAggregator) |
Modifier and Type | Method and Description |
---|---|
static <K,V> ImmutableMap<K,V> |
Iterables.iMap() |
static <K,V> ImmutableMap<K,V> |
Iterables.iMap(K key,
V value) |
static <K,V> ImmutableMap<K,V> |
Iterables.iMap(K key1,
V value1,
K key2,
V value2) |
static <K,V> ImmutableMap<K,V> |
Iterables.iMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
static <K,V> ImmutableMap<K,V> |
Iterables.iMap(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractImmutableMap<K,V> |
class |
ImmutableUnifiedMap<K,V> |
Modifier and Type | Method and Description |
---|---|
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
<R> ImmutableMap<K,R> |
AbstractImmutableMap.collectValues(Function2<? super K,? super V,? extends R> function) |
ImmutableMap<V,K> |
AbstractImmutableMap.flipUniqueValues() |
<V1> ImmutableMap<V1,V> |
AbstractImmutableMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
ImmutableMap<K,V> |
AbstractImmutableMap.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
ImmutableMap<K,V> |
AbstractImmutableMap.newWithAllKeyValues(Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
ImmutableMap<K,V> |
AbstractImmutableMap.newWithKeyValue(K key,
V value) |
ImmutableMap<K,V> |
AbstractImmutableMap.newWithoutAllKeys(Iterable<? extends K> keys) |
ImmutableMap<K,V> |
AbstractImmutableMap.newWithoutKey(K key) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.of() |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.of(K key,
V value) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.of(K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.of(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.ofAll(Map<K,V> map) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.ofMap(Map<K,V> map)
Deprecated.
use
ImmutableMapFactoryImpl.ofAll(Map) instead (inlineable) |
ImmutableMap<K,V> |
AbstractImmutableMap.reject(Predicate2<? super K,? super V> predicate) |
ImmutableMap<K,V> |
AbstractImmutableMap.select(Predicate2<? super K,? super V> predicate) |
ImmutableMap<K,V> |
AbstractImmutableMap.toImmutable() |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.with() |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.with(K key,
V value) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.with(K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.with(K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableMap<K,V> |
ImmutableMapFactoryImpl.withAll(Map<K,V> map) |
Modifier and Type | Method and Description |
---|---|
ImmutableMap<K,V> |
UnifiedMap.toImmutable() |
ImmutableMap<K,V> |
UnmodifiableMutableMap.toImmutable() |
ImmutableMap<K,V> |
SynchronizedMutableMap.toImmutable() |
ImmutableMap<K,V> |
ConcurrentHashMap.toImmutable() |
ImmutableMap<K,V> |
MapAdapter.toImmutable() |
ImmutableMap<K,V> |
AbstractMutableMap.toImmutable() |
ImmutableMap<K,V> |
ConcurrentHashMapUnsafe.toImmutable() |
ImmutableMap<K,V> |
ConcurrentMutableHashMap.toImmutable()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableSortedMap.aggregateBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Function2<? super V2,? super V,? extends V2> nonMutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableSortedMap.aggregateInPlaceBy(Function<? super V,? extends K2> groupBy,
Function0<? extends V2> zeroValueFactory,
Procedure2<? super V2,? super V> mutatingAggregator) |
<K2,V2> ImmutableMap<K2,V2> |
AbstractImmutableSortedMap.collect(Function2<? super K,? super V,Pair<K2,V2>> function) |
ImmutableMap<V,K> |
ImmutableTreeMap.flipUniqueValues() |
<V1> ImmutableMap<V1,V> |
AbstractImmutableSortedMap.groupByUniqueKey(Function<? super V,? extends V1> function) |
Modifier and Type | Class and Description |
---|---|
class |
ImmutableUnifiedMapWithHashingStrategy<K,V> |
Modifier and Type | Method and Description |
---|---|
<R> ImmutableMap<K,R> |
ImmutableUnifiedMapWithHashingStrategy.collectValues(Function2<? super K,? super V,? extends R> function) |
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.newWithAllKeyValueArguments(Pair<? extends K,? extends V>... keyValuePairs) |
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.newWithAllKeyValues(Iterable<? extends Pair<? extends K,? extends V>> keyValues) |
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.newWithKeyValue(K key,
V value) |
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.newWithoutAllKeys(Iterable<? extends K> keys) |
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.newWithoutKey(K key) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.of(HashingStrategy<? super K> hashingStrategy) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.of(HashingStrategy<? super K> hashingStrategy,
K key,
V value) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.of(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.of(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.of(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.ofAll(Map<K,V> map) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.ofMap(Map<K,V> map)
Deprecated.
use
ImmutableHashingStrategyMapFactoryImpl.ofAll(Map) instead (inlineable) |
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.reject(Predicate2<? super K,? super V> predicate) |
ImmutableMap<K,V> |
ImmutableUnifiedMapWithHashingStrategy.select(Predicate2<? super K,? super V> predicate) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.with(HashingStrategy<? super K> hashingStrategy) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.with(HashingStrategy<? super K> hashingStrategy,
K key,
V value) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.with(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.with(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.with(HashingStrategy<? super K> hashingStrategy,
K key1,
V value1,
K key2,
V value2,
K key3,
V value3,
K key4,
V value4) |
<K,V> ImmutableMap<K,V> |
ImmutableHashingStrategyMapFactoryImpl.withAll(Map<K,V> map) |
Modifier and Type | Method and Description |
---|---|
ImmutableMap<K,V> |
UnifiedMapWithHashingStrategy.toImmutable() |
Constructor and Description |
---|
ImmutableBagMultimapImpl(ImmutableMap<K,ImmutableBag<V>> map) |
Constructor and Description |
---|
ImmutableListMultimapImpl(ImmutableMap<K,ImmutableList<V>> map) |
ImmutableListMultimapSerializationProxy(ImmutableMap<K,ImmutableList<V>> map) |
Constructor and Description |
---|
ImmutableSetMultimapImpl(ImmutableMap<K,ImmutableSet<V>> map) |
Constructor and Description |
---|
ImmutableSortedSetMultimapImpl(ImmutableMap<K,ImmutableSortedSet<V>> map,
Comparator<? super V> comparator) |
Modifier and Type | Method and Description |
---|---|
<V> ImmutableMap<V,T> |
AbstractImmutableSet.groupByUniqueKey(Function<? super T,? extends V> function) |
Modifier and Type | Method and Description |
---|---|
static void |
Verify.assertContainsAllKeyValues(ImmutableMap<?,?> actualImmutableMap,
Object... keyValues)
Assert that the given
ImmutableMap contains all of the given keys and values. |
static void |
Verify.assertContainsAllKeyValues(String immutableMapName,
ImmutableMap<?,?> actualImmutableMap,
Object... expectedKeyValues)
Assert that the given
ImmutableMap contains all of the given keys and values. |
static void |
Verify.assertContainsKey(Object expectedKey,
ImmutableMap<?,?> actualImmutableMap)
Assert that the given
ImmutableMap contains an entry with the given key. |
static void |
Verify.assertContainsKey(String immutableMapName,
Object expectedKey,
ImmutableMap<?,?> actualImmutableMap)
Assert that the given
ImmutableMap contains an entry with the given key. |
static void |
Verify.assertContainsKeyValue(Object expectedKey,
Object expectedValue,
ImmutableMap<?,?> actualImmutableMap)
Assert that the given
ImmutableMap contains an entry with the given key and value. |
static void |
Verify.assertContainsKeyValue(String immutableMapName,
Object expectedKey,
Object expectedValue,
ImmutableMap<?,?> actualImmutableMap)
Assert that the given
ImmutableMap contains an entry with the given key and value. |
static void |
Verify.assertEmpty(ImmutableMap<?,?> actualImmutableMap) |
static void |
Verify.assertEmpty(String mapName,
ImmutableMap<?,?> actualImmutableMap) |
static void |
Verify.assertSize(int expectedSize,
ImmutableMap<?,?> actualImmutableMap)
Assert the size of the given
ImmutableMap . |
static void |
Verify.assertSize(String immutableMapName,
int expectedSize,
ImmutableMap<?,?> actualImmutableMap)
Assert the size of the given
ImmutableMap . |
Copyright © 2004–2017. All rights reserved.