Interface ImmutableCharBooleanMapFactory
-
- All Known Implementing Classes:
ImmutableCharBooleanMapFactoryImpl
public interface ImmutableCharBooleanMapFactory
A 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 ImmutableCharBooleanMap
empty()
<T> ImmutableCharBooleanMap
from(java.lang.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 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(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-