Interface ImmutableIntBooleanMapFactory
- All Known Implementing Classes:
ImmutableIntBooleanMapFactoryImpl
public interface ImmutableIntBooleanMapFactory
A factory which creates instances of type
ImmutableIntBooleanMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(int key, boolean value) Same aswith(int, boolean).ofAll(IntBooleanMap map) Same aswithAll(IntBooleanMap).with()Same asempty().with(int key, boolean value) withAll(IntBooleanMap map)
-
Method Details
-
empty
ImmutableIntBooleanMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableIntBooleanMap with()Same asempty(). -
of
Same aswith(int, boolean). -
with
-
ofAll
Same aswithAll(IntBooleanMap). -
withAll
-
from
<T> ImmutableIntBooleanMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-