Interface ImmutableHashingStrategyMapFactory
-
- All Known Implementing Classes:
ImmutableHashingStrategyMapFactoryImpl
public interface ImmutableHashingStrategyMapFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V>
ImmutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy)
Same aswith(HashingStrategy)
.<K,V>
ImmutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy, K key, V value)
<K,V>
ImmutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
<K,V>
ImmutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableMap<K,V>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>ofAll(java.util.Map<K,V> map)
Same aswithAll(Map)
.<K,V>
ImmutableMap<K,V>ofMap(java.util.Map<K,V> map)
<K,V>
ImmutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy)
<K,V>
ImmutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy, K key, V value)
<K,V>
ImmutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
<K,V>
ImmutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableMap<K,V>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>withAll(java.util.Map<K,V> map)
-
-
-
Method Detail
-
of
<K,V> ImmutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy)
Same aswith(HashingStrategy)
.
-
with
<K,V> ImmutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy)
-
of
<K,V> ImmutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy, K key, V value)
-
with
<K,V> ImmutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key, V value)
-
of
<K,V> ImmutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
-
with
<K,V> ImmutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
-
of
<K,V> ImmutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
-
with
<K,V> ImmutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
-
of
<K,V> ImmutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
with
<K,V> ImmutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
ofMap
<K,V> ImmutableMap<K,V> ofMap(java.util.Map<K,V> map)
-
ofAll
<K,V> ImmutableMap<K,V> ofAll(java.util.Map<K,V> map)
Same aswithAll(Map)
.
-
withAll
<K,V> ImmutableMap<K,V> withAll(java.util.Map<K,V> map)
-
-