Interface MutableLongByteMapFactory
-
public interface MutableLongByteMapFactoryA 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 MutableLongByteMapempty()<T> MutableLongByteMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongByteMapof()Same asempty().default MutableLongByteMapof(long key, byte value)default MutableLongByteMapof(long key1, byte value1, long key2, byte value2)default MutableLongByteMapof(long key1, byte value1, long key2, byte value2, long key3, byte value3)default MutableLongByteMapof(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)MutableLongByteMapofAll(LongByteMap map)Same aswithAll(LongByteMap).MutableLongByteMapofInitialCapacity(int capacity)Same asempty().MutableLongByteMapwith()Same asempty().default MutableLongByteMapwith(long key, byte value)default MutableLongByteMapwith(long key1, byte value1, long key2, byte value2)default MutableLongByteMapwith(long key1, byte value1, long key2, byte value2, long key3, byte value3)default MutableLongByteMapwith(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)MutableLongByteMapwithAll(LongByteMap map)MutableLongByteMapwithInitialCapacity(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(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-