Interface MutableByteByteMapFactory
-
- All Known Implementing Classes:
MutableByteByteMapFactoryImpl
public interface MutableByteByteMapFactory
A factory which creates instances of typeMutableByteByteMap
. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableByteByteMap
empty()
<T> MutableByteByteMap
from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteByteMap
of()
Same asempty()
.default MutableByteByteMap
of(byte key, byte value)
default MutableByteByteMap
of(byte key1, byte value1, byte key2, byte value2)
default MutableByteByteMap
of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3)
default MutableByteByteMap
of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4)
MutableByteByteMap
ofAll(ByteByteMap map)
Same aswithAll(ByteByteMap)
.MutableByteByteMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteByteMap
with()
Same asempty()
.default MutableByteByteMap
with(byte key, byte value)
default MutableByteByteMap
with(byte key1, byte value1, byte key2, byte value2)
default MutableByteByteMap
with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3)
default MutableByteByteMap
with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4)
MutableByteByteMap
withAll(ByteByteMap map)
MutableByteByteMap
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableByteByteMap empty()
-
of
MutableByteByteMap of()
Same asempty()
.
-
with
MutableByteByteMap with()
Same asempty()
.
-
of
default MutableByteByteMap of(byte key, byte value)
- Since:
- 11.1.
-
with
default MutableByteByteMap with(byte key, byte value)
- Since:
- 11.1.
-
of
default MutableByteByteMap of(byte key1, byte value1, byte key2, byte value2)
- Since:
- 11.1.
-
with
default MutableByteByteMap with(byte key1, byte value1, byte key2, byte value2)
- Since:
- 11.1.
-
of
default MutableByteByteMap of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3)
- Since:
- 11.1.
-
with
default MutableByteByteMap with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3)
- Since:
- 11.1.
-
of
default MutableByteByteMap of(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4)
- Since:
- 11.1.
-
with
default MutableByteByteMap with(byte key1, byte value1, byte key2, byte value2, byte key3, byte value3, byte key4, byte value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableByteByteMap ofInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
withInitialCapacity
MutableByteByteMap withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
ofAll
MutableByteByteMap ofAll(ByteByteMap map)
Same aswithAll(ByteByteMap)
.
-
withAll
MutableByteByteMap withAll(ByteByteMap map)
-
from
<T> MutableByteByteMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-