Interface ImmutableByteDoubleMapFactory
- All Known Implementing Classes:
ImmutableByteDoubleMapFactoryImpl
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 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 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
-