public interface MutableLongByteMapFactory
MutableLongByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableLongByteMap |
empty() |
<T> MutableLongByteMap |
from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableLongByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableLongByteMap |
of()
Same as
empty(). |
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 as
withAll(LongByteMap). |
MutableLongByteMap |
ofInitialCapacity(int capacity)
Same as
empty(). |
MutableLongByteMap |
with()
Same as
empty(). |
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 as
empty(). |
MutableLongByteMap empty()
MutableLongByteMap of()
empty().MutableLongByteMap with()
empty().default MutableLongByteMap of(long key, byte value)
default MutableLongByteMap with(long key, byte value)
default MutableLongByteMap of(long key1, byte value1, long key2, byte value2)
default MutableLongByteMap with(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 with(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)
default MutableLongByteMap with(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
MutableLongByteMap ofInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableLongByteMap withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableLongByteMap ofAll(LongByteMap map)
withAll(LongByteMap).MutableLongByteMap withAll(LongByteMap map)
<T> MutableLongByteMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
MutableLongByteMap from an Iterable<T> by applying keyFunction and valueFunction.Copyright © 2004–2022. All rights reserved.