Interface ImmutableLongByteMapFactory
public interface ImmutableLongByteMapFactory
A factory which creates instances of type
ImmutableLongByteMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(long key, byte value) Same aswith(long, byte).ofAll(LongByteMap map) Same aswithAll(LongByteMap).with()Same asempty().with(long key, byte value) withAll(LongByteMap map)
-
Method Details
-
empty
ImmutableLongByteMap empty()- Since:
- 6.0
-
of
ImmutableLongByteMap of()Same asempty(). -
with
ImmutableLongByteMap with()Same asempty(). -
of
Same aswith(long, byte). -
with
-
ofAll
Same aswithAll(LongByteMap). -
withAll
-
from
<T> ImmutableLongByteMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-