Interface ImmutableCharBooleanMapFactory
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 TypeMethodDescriptionempty()from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(char key, boolean value) Same aswith(char, boolean).ofAll(CharBooleanMap map) Same aswithAll(CharBooleanMap).with()Same asempty().with(char key, boolean value) 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 anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-