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