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 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 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
-