Interface ImmutableLongBooleanMapFactory
- All Known Implementing Classes:
ImmutableLongBooleanMapFactoryImpl
public interface ImmutableLongBooleanMapFactory
A factory which creates instances of type
ImmutableLongBooleanMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableLongBooleanMap
empty()
<T> ImmutableLongBooleanMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongBooleanMap
of()
Same asempty()
.ImmutableLongBooleanMap
of(long key, boolean value)
Same aswith(long, boolean)
.ImmutableLongBooleanMap
ofAll(LongBooleanMap map)
Same aswithAll(LongBooleanMap)
.ImmutableLongBooleanMap
with()
Same asempty()
.ImmutableLongBooleanMap
with(long key, boolean value)
ImmutableLongBooleanMap
withAll(LongBooleanMap map)
-
Method Details
-
empty
ImmutableLongBooleanMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableLongBooleanMap with()Same asempty()
. -
of
Same aswith(long, boolean)
. -
with
-
ofAll
Same aswithAll(LongBooleanMap)
. -
withAll
-
from
<T> ImmutableLongBooleanMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-