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 MutableByteCharMap
empty()
<T> MutableByteCharMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteCharMap
of()
Same asempty()
.MutableByteCharMap
ofAll(ByteCharMap map)
Same aswithAll(ByteCharMap)
.MutableByteCharMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteCharMap
with()
Same asempty()
.MutableByteCharMap
withAll(ByteCharMap map)
MutableByteCharMap
withInitialCapacity(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 anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-