Interface MutableObjectIntHashingStrategyMapFactory
-
- All Known Implementing Classes:
MutableObjectIntHashingStrategyMapFactoryImpl
public interface MutableObjectIntHashingStrategyMapFactory
A factory which creates instances of typeMutableObjectIntMap
. 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> MutableObjectIntMap<K>
empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectIntMap<K>
of(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectIntMap<K>
with(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectIntMap<K>
withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()
but takes in an initial capacity
-
-
-
Method Detail
-
empty
<K> MutableObjectIntMap<K> empty(HashingStrategy<? super K> hashingStrategy)
-
of
<K> MutableObjectIntMap<K> of(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.
-
with
<K> MutableObjectIntMap<K> with(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.
-
withInitialCapacity
<K> MutableObjectIntMap<K> withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()
but takes in an initial capacity
-
-