Interface MutableHashingStrategyMapFactory
-
- All Known Implementing Classes:
MutableHashingStrategyMapFactoryImpl
public interface MutableHashingStrategyMapFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <K,V,T>
MutableMap<K,V>fromFunction(Function<? super K,? extends T> function)
Since 11.1<K,V>
MutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy)
Same aswith(HashingStrategy)
.<K,V>
MutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy, K key, V value)
<K,V>
MutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
<K,V>
MutableMap<K,V>of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableMap<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>
MutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy)
<K,V>
MutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy, K key, V value)
<K,V>
MutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
<K,V>
MutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
MutableMap<K,V>with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
-
-
Method Detail
-
of
<K,V> MutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy)
Same aswith(HashingStrategy)
.
-
with
<K,V> MutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy)
-
fromFunction
default <K,V,T> MutableMap<K,V> fromFunction(Function<? super K,? extends T> function)
Since 11.1
-
of
<K,V> MutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy, K key, V value)
-
with
<K,V> MutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key, V value)
-
of
<K,V> MutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
-
with
<K,V> MutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2)
-
of
<K,V> MutableMap<K,V> of(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
-
with
<K,V> MutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3)
-
of
<K,V> MutableMap<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> MutableMap<K,V> with(HashingStrategy<? super K> hashingStrategy, K key1, V value1, K key2, V value2, K key3, V value3, K key4, V value4)
-
-