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