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