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