Interface MutableObjectFloatMapFactory
- All Known Implementing Classes:
MutableObjectFloatMapFactoryImpl
public interface MutableObjectFloatMapFactory
A factory which creates instances of type
MutableObjectFloatMap.
This file was automatically generated from template file mutableObjectPrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description <K> MutableObjectFloatMap<K>empty()<T, K> MutableObjectFloatMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableObjectFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectFloatMap<K>of()Same asempty().<K> MutableObjectFloatMap<K>ofAll(ObjectFloatMap<? extends K> map)Same aswithAll(ObjectFloatMap).<K> MutableObjectFloatMap<K>ofInitialCapacity(int capacity)Same asempty().<K> MutableObjectFloatMap<K>with()Same asempty().<K> MutableObjectFloatMap<K>withAll(ObjectFloatMap<? extends K> map)<K> MutableObjectFloatMap<K>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(ObjectFloatMap). -
withAll
-
from
<T, K> MutableObjectFloatMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableObjectFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-