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 MutableByteByteMapempty()<T> MutableByteByteMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteByteMapof()Same asempty().MutableByteByteMapofAll(ByteByteMap map)Same aswithAll(ByteByteMap).MutableByteByteMapofInitialCapacity(int capacity)Same asempty().MutableByteByteMapwith()Same asempty().MutableByteByteMapwithAll(ByteByteMap map)MutableByteByteMapwithInitialCapacity(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 anMutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-