Interface ImmutableFloatByteMapFactory
- All Known Implementing Classes:
ImmutableFloatByteMapFactoryImpl
public interface ImmutableFloatByteMapFactory
A factory which creates instances of type
ImmutableFloatByteMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableFloatByteMapempty()<T> ImmutableFloatByteMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatByteMapof()Same asempty().ImmutableFloatByteMapof(float key, byte value)Same aswith(float, byte).ImmutableFloatByteMapofAll(FloatByteMap map)Same aswithAll(FloatByteMap).ImmutableFloatByteMapwith()Same asempty().ImmutableFloatByteMapwith(float key, byte value)ImmutableFloatByteMapwithAll(FloatByteMap map)
-
Method Details
-
empty
ImmutableFloatByteMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableFloatByteMap with()Same asempty(). -
of
Same aswith(float, byte). -
with
-
ofAll
Same aswithAll(FloatByteMap). -
withAll
-
from
<T> ImmutableFloatByteMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-