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 ImmutableDoubleBooleanMap
empty()
<T> ImmutableDoubleBooleanMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableDoubleBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleBooleanMap
of()
Same asempty()
.ImmutableDoubleBooleanMap
of(double key, boolean value)
Same aswith(double, boolean)
.ImmutableDoubleBooleanMap
ofAll(DoubleBooleanMap map)
Same aswithAll(DoubleBooleanMap)
.ImmutableDoubleBooleanMap
with()
Same asempty()
.ImmutableDoubleBooleanMap
with(double key, boolean value)
ImmutableDoubleBooleanMap
withAll(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 anImmutableDoubleBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-