Interface ImmutableLongBooleanMapFactory
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 TypeMethodDescriptionempty()from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(long key, boolean value) Same aswith(long, boolean).ofAll(LongBooleanMap map) Same aswithAll(LongBooleanMap).with()Same asempty().with(long key, boolean value) 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 anImmutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-