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