Interface ImmutableIntBooleanMapFactory
-
public interface ImmutableIntBooleanMapFactoryA factory which creates instances of typeImmutableIntBooleanMap. 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 ImmutableIntBooleanMapempty()<T> ImmutableIntBooleanMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntBooleanMapof()Same asempty().ImmutableIntBooleanMapof(int key, boolean value)Same aswith(int, boolean).ImmutableIntBooleanMapofAll(IntBooleanMap map)Same aswithAll(IntBooleanMap).ImmutableIntBooleanMapwith()Same asempty().ImmutableIntBooleanMapwith(int key, boolean value)ImmutableIntBooleanMapwithAll(IntBooleanMap map)
-
-
-
Method Detail
-
empty
ImmutableIntBooleanMap empty()
- Since:
- 6.0
-
of
ImmutableIntBooleanMap of()
Same asempty().
-
with
ImmutableIntBooleanMap with()
Same asempty().
-
of
ImmutableIntBooleanMap of(int key, boolean value)
Same aswith(int, boolean).
-
with
ImmutableIntBooleanMap with(int key, boolean value)
-
ofAll
ImmutableIntBooleanMap ofAll(IntBooleanMap map)
Same aswithAll(IntBooleanMap).
-
withAll
ImmutableIntBooleanMap withAll(IntBooleanMap map)
-
from
<T> ImmutableIntBooleanMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-