Interface ImmutableDoubleBooleanMapFactory
- All Known Implementing Classes:
ImmutableDoubleBooleanMapFactoryImpl
public interface ImmutableDoubleBooleanMapFactory
A factory which creates instances of type
ImmutableDoubleBooleanMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleBooleanMapempty()<T> ImmutableDoubleBooleanMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleBooleanMapof()Same asempty().ImmutableDoubleBooleanMapof(double key, boolean value)Same aswith(double, boolean).ImmutableDoubleBooleanMapofAll(DoubleBooleanMap map)Same aswithAll(DoubleBooleanMap).ImmutableDoubleBooleanMapwith()Same asempty().ImmutableDoubleBooleanMapwith(double key, boolean value)ImmutableDoubleBooleanMapwithAll(DoubleBooleanMap map)
-
Method Details
-
empty
ImmutableDoubleBooleanMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableDoubleBooleanMap with()Same asempty(). -
of
Same aswith(double, boolean). -
with
-
ofAll
Same aswithAll(DoubleBooleanMap). -
withAll
-
from
<T> ImmutableDoubleBooleanMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-