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