Interface MutableByteByteMapFactory
- All Known Implementing Classes:
MutableByteByteMapFactoryImpl
public interface MutableByteByteMapFactory
A factory which creates instances of type
MutableByteByteMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteByteMap
empty()
<T> MutableByteByteMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteByteMap
of()
Same asempty()
.MutableByteByteMap
ofAll(ByteByteMap map)
Same aswithAll(ByteByteMap)
.MutableByteByteMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteByteMap
with()
Same asempty()
.MutableByteByteMap
withAll(ByteByteMap map)
MutableByteByteMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableByteByteMap empty() -
of
MutableByteByteMap of()Same asempty()
. -
with
MutableByteByteMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(ByteByteMap)
. -
withAll
-
from
<T> MutableByteByteMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-