Interface ImmutableCharBooleanMapFactory
- All Known Implementing Classes:
ImmutableCharBooleanMapFactoryImpl
public interface ImmutableCharBooleanMapFactory
A factory which creates instances of type
ImmutableCharBooleanMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableCharBooleanMap
empty()
<T> ImmutableCharBooleanMap
from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharBooleanMap
of()
Same asempty()
.ImmutableCharBooleanMap
of(char key, boolean value)
Same aswith(char, boolean)
.ImmutableCharBooleanMap
ofAll(CharBooleanMap map)
Same aswithAll(CharBooleanMap)
.ImmutableCharBooleanMap
with()
Same asempty()
.ImmutableCharBooleanMap
with(char key, boolean value)
ImmutableCharBooleanMap
withAll(CharBooleanMap map)
-
Method Details
-
empty
ImmutableCharBooleanMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableCharBooleanMap with()Same asempty()
. -
of
Same aswith(char, boolean)
. -
with
-
ofAll
Same aswithAll(CharBooleanMap)
. -
withAll
-
from
<T> ImmutableCharBooleanMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-