Interface MutableObjectLongHashingStrategyMapFactory
-
public interface MutableObjectLongHashingStrategyMapFactoryA factory which creates instances of typeMutableObjectLongMap. This file was automatically generated from template file mutableObjectPrimitiveHashingStrategyMapFactory.stg.- Since:
- 11.1.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K> MutableObjectLongMap<K>empty(HashingStrategy<? super K> hashingStrategy)<K> MutableObjectLongMap<K>of(HashingStrategy<? super K> hashingStrategy)Same as#empty().<K> MutableObjectLongMap<K>with(HashingStrategy<? super K> hashingStrategy)Same as#empty().<K> MutableObjectLongMap<K>withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)Same as#empty()but takes in an initial capacity
-
-
-
Method Detail
-
empty
<K> MutableObjectLongMap<K> empty(HashingStrategy<? super K> hashingStrategy)
-
of
<K> MutableObjectLongMap<K> of(HashingStrategy<? super K> hashingStrategy)
Same as#empty().
-
with
<K> MutableObjectLongMap<K> with(HashingStrategy<? super K> hashingStrategy)
Same as#empty().
-
withInitialCapacity
<K> MutableObjectLongMap<K> withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()but takes in an initial capacity
-
-