Interface ImmutableByteFloatMapFactory
public interface ImmutableByteFloatMapFactory
A factory which creates instances of type
ImmutableByteFloatMap.
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, FloatFunction<? super T> valueFunction) Creates anImmutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(byte key, float value) Same aswith(byte, float).ofAll(ByteFloatMap map) Same aswithAll(ByteFloatMap).with()Same asempty().with(byte key, float value) withAll(ByteFloatMap map)
-
Method Details
-
empty
ImmutableByteFloatMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableByteFloatMap with()Same asempty(). -
of
Same aswith(byte, float). -
with
-
ofAll
Same aswithAll(ByteFloatMap). -
withAll
-
from
<T> ImmutableByteFloatMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-