Interface MutableLongByteMapFactory
-
- All Known Implementing Classes:
MutableLongByteMapFactoryImpl
public interface MutableLongByteMapFactory
A factory which creates instances of typeMutableLongByteMap
. 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 MutableLongByteMap
empty()
<T> MutableLongByteMap
from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongByteMap
of()
Same asempty()
.default MutableLongByteMap
of(long key, byte value)
default MutableLongByteMap
of(long key1, byte value1, long key2, byte value2)
default MutableLongByteMap
of(long key1, byte value1, long key2, byte value2, long key3, byte value3)
default MutableLongByteMap
of(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
MutableLongByteMap
ofAll(LongByteMap map)
Same aswithAll(LongByteMap)
.MutableLongByteMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableLongByteMap
with()
Same asempty()
.default MutableLongByteMap
with(long key, byte value)
default MutableLongByteMap
with(long key1, byte value1, long key2, byte value2)
default MutableLongByteMap
with(long key1, byte value1, long key2, byte value2, long key3, byte value3)
default MutableLongByteMap
with(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
MutableLongByteMap
withAll(LongByteMap map)
MutableLongByteMap
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableLongByteMap empty()
-
of
MutableLongByteMap of()
Same asempty()
.
-
with
MutableLongByteMap with()
Same asempty()
.
-
of
default MutableLongByteMap of(long key, byte value)
- Since:
- 11.1.
-
with
default MutableLongByteMap with(long key, byte value)
- Since:
- 11.1.
-
of
default MutableLongByteMap of(long key1, byte value1, long key2, byte value2)
- Since:
- 11.1.
-
with
default MutableLongByteMap with(long key1, byte value1, long key2, byte value2)
- Since:
- 11.1.
-
of
default MutableLongByteMap of(long key1, byte value1, long key2, byte value2, long key3, byte value3)
- Since:
- 11.1.
-
with
default MutableLongByteMap with(long key1, byte value1, long key2, byte value2, long key3, byte value3)
- Since:
- 11.1.
-
of
default MutableLongByteMap of(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
- Since:
- 11.1.
-
with
default MutableLongByteMap with(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableLongByteMap ofInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
withInitialCapacity
MutableLongByteMap withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
ofAll
MutableLongByteMap ofAll(LongByteMap map)
Same aswithAll(LongByteMap)
.
-
withAll
MutableLongByteMap withAll(LongByteMap map)
-
from
<T> MutableLongByteMap from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-