Interface MutableCharByteMapFactory
- All Known Implementing Classes:
MutableCharByteMapFactoryImpl
public interface MutableCharByteMapFactory
A factory which creates instances of type
MutableCharByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableCharByteMapempty()<T> MutableCharByteMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharByteMapof()Same asempty().MutableCharByteMapofAll(CharByteMap map)Same aswithAll(CharByteMap).MutableCharByteMapofInitialCapacity(int capacity)Same asempty().MutableCharByteMapwith()Same asempty().MutableCharByteMapwithAll(CharByteMap map)MutableCharByteMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableCharByteMap empty() -
of
MutableCharByteMap of()Same asempty(). -
with
MutableCharByteMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(CharByteMap). -
withAll
-
from
<T> MutableCharByteMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-