Interface MutableFloatObjectMapFactory
- All Known Implementing Classes:
MutableFloatObjectMapFactoryImpl
public interface MutableFloatObjectMapFactory
A factory which creates instances of type
MutableFloatObjectMap
.
This file was automatically generated from template file mutablePrimitiveObjectMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description <V> MutableFloatObjectMap<V>
empty()
<T, V> MutableFloatObjectMap<V>
from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableFloatObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> MutableFloatObjectMap<V>
of()
Same asempty()
.<V> MutableFloatObjectMap<V>
ofAll(FloatObjectMap<? extends V> map)
Same aswithAll(FloatObjectMap)
.<V> MutableFloatObjectMap<V>
ofInitialCapacity(int capacity)
Same asempty()
.<V> MutableFloatObjectMap<V>
with()
Same asempty()
.<V> MutableFloatObjectMap<V>
withAll(FloatObjectMap<? extends V> map)
<V> MutableFloatObjectMap<V>
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
-
of
Same asempty()
. -
with
Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(FloatObjectMap)
. -
withAll
-
from
<T, V> MutableFloatObjectMap<V> from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableFloatObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-