Interface ImmutableByteDoubleMapFactory
-
public interface ImmutableByteDoubleMapFactoryA factory which creates instances of typeImmutableByteDoubleMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableByteDoubleMapempty()<T> ImmutableByteDoubleMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableByteDoubleMapof()Same asempty().ImmutableByteDoubleMapof(byte key, double value)Same aswith(byte, double).ImmutableByteDoubleMapofAll(ByteDoubleMap map)Same aswithAll(ByteDoubleMap).ImmutableByteDoubleMapwith()Same asempty().ImmutableByteDoubleMapwith(byte key, double value)ImmutableByteDoubleMapwithAll(ByteDoubleMap map)
-
-
-
Method Detail
-
empty
ImmutableByteDoubleMap empty()
- Since:
- 6.0
-
of
ImmutableByteDoubleMap of()
Same asempty().
-
with
ImmutableByteDoubleMap with()
Same asempty().
-
of
ImmutableByteDoubleMap of(byte key, double value)
Same aswith(byte, double).
-
with
ImmutableByteDoubleMap with(byte key, double value)
-
ofAll
ImmutableByteDoubleMap ofAll(ByteDoubleMap map)
Same aswithAll(ByteDoubleMap).
-
withAll
ImmutableByteDoubleMap withAll(ByteDoubleMap map)
-
from
<T> ImmutableByteDoubleMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-