Interface MutableByteCharMapFactory
- All Known Implementing Classes:
MutableByteCharMapFactoryImpl
public interface MutableByteCharMapFactory
A factory which creates instances of type
MutableByteCharMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteCharMapempty()<T> MutableByteCharMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteCharMapof()Same asempty().MutableByteCharMapofAll(ByteCharMap map)Same aswithAll(ByteCharMap).MutableByteCharMapofInitialCapacity(int capacity)Same asempty().MutableByteCharMapwith()Same asempty().MutableByteCharMapwithAll(ByteCharMap map)MutableByteCharMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableByteCharMap empty() -
of
MutableByteCharMap of()Same asempty(). -
with
MutableByteCharMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ByteCharMap). -
withAll
-
from
<T> MutableByteCharMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-