Interface ImmutableFloatObjectMapFactory
-
- All Known Implementing Classes:
ImmutableFloatObjectMapFactoryImpl
public interface ImmutableFloatObjectMapFactory
A factory which creates instances of typeImmutableFloatObjectMap
. This file was automatically generated from template file immutablePrimitiveObjectMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> ImmutableFloatObjectMap<V>
empty()
<T,V>
ImmutableFloatObjectMap<V>from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableFloatObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> ImmutableFloatObjectMap<V>
of()
Same asempty()
.<V> ImmutableFloatObjectMap<V>
of(float key, V value)
Same aswith(float, Object)
.<V> ImmutableFloatObjectMap<V>
ofAll(FloatObjectMap<? extends V> map)
Same aswithAll(FloatObjectMap)
.<V> ImmutableFloatObjectMap<V>
with()
Same asempty()
.<V> ImmutableFloatObjectMap<V>
with(float key, V value)
<V> ImmutableFloatObjectMap<V>
withAll(FloatObjectMap<? extends V> map)
-
-
-
Method Detail
-
empty
<V> ImmutableFloatObjectMap<V> empty()
- Since:
- 6.0
-
of
<V> ImmutableFloatObjectMap<V> of()
Same asempty()
.
-
with
<V> ImmutableFloatObjectMap<V> with()
Same asempty()
.
-
of
<V> ImmutableFloatObjectMap<V> of(float key, V value)
Same aswith(float, Object)
.
-
with
<V> ImmutableFloatObjectMap<V> with(float key, V value)
-
ofAll
<V> ImmutableFloatObjectMap<V> ofAll(FloatObjectMap<? extends V> map)
Same aswithAll(FloatObjectMap)
.
-
withAll
<V> ImmutableFloatObjectMap<V> withAll(FloatObjectMap<? extends V> map)
-
from
<T,V> ImmutableFloatObjectMap<V> from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableFloatObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-