Interface ImmutableCharBooleanMapFactory
-
public interface ImmutableCharBooleanMapFactoryA factory which creates instances of typeImmutableCharBooleanMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableCharBooleanMapempty()<T> ImmutableCharBooleanMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharBooleanMapof()Same asempty().ImmutableCharBooleanMapof(char key, boolean value)Same aswith(char, boolean).ImmutableCharBooleanMapofAll(CharBooleanMap map)Same aswithAll(CharBooleanMap).ImmutableCharBooleanMapwith()Same asempty().ImmutableCharBooleanMapwith(char key, boolean value)ImmutableCharBooleanMapwithAll(CharBooleanMap map)
-
-
-
Method Detail
-
empty
ImmutableCharBooleanMap empty()
- Since:
- 6.0
-
of
ImmutableCharBooleanMap of()
Same asempty().
-
with
ImmutableCharBooleanMap with()
Same asempty().
-
of
ImmutableCharBooleanMap of(char key, boolean value)
Same aswith(char, boolean).
-
with
ImmutableCharBooleanMap with(char key, boolean value)
-
ofAll
ImmutableCharBooleanMap ofAll(CharBooleanMap map)
Same aswithAll(CharBooleanMap).
-
withAll
ImmutableCharBooleanMap withAll(CharBooleanMap map)
-
from
<T> ImmutableCharBooleanMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-