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 ImmutableIntBooleanMap
empty()
<T> ImmutableIntBooleanMap
from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntBooleanMap
of()
Same asempty()
.ImmutableIntBooleanMap
of(int key, boolean value)
Same aswith(int, boolean)
.ImmutableIntBooleanMap
ofAll(IntBooleanMap map)
Same aswithAll(IntBooleanMap)
.ImmutableIntBooleanMap
with()
Same asempty()
.ImmutableIntBooleanMap
with(int key, boolean value)
ImmutableIntBooleanMap
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 anImmutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-