Interface ImmutableLongBooleanMapFactory
-
public interface ImmutableLongBooleanMapFactoryA factory which creates instances of typeImmutableLongBooleanMap. 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 ImmutableLongBooleanMapempty()<T> ImmutableLongBooleanMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongBooleanMapof()Same asempty().ImmutableLongBooleanMapof(long key, boolean value)Same aswith(long, boolean).ImmutableLongBooleanMapofAll(LongBooleanMap map)Same aswithAll(LongBooleanMap).ImmutableLongBooleanMapwith()Same asempty().ImmutableLongBooleanMapwith(long key, boolean value)ImmutableLongBooleanMapwithAll(LongBooleanMap map)
-
-
-
Method Detail
-
empty
ImmutableLongBooleanMap empty()
- Since:
- 6.0
-
of
ImmutableLongBooleanMap of()
Same asempty().
-
with
ImmutableLongBooleanMap with()
Same asempty().
-
of
ImmutableLongBooleanMap of(long key, boolean value)
Same aswith(long, boolean).
-
with
ImmutableLongBooleanMap with(long key, boolean value)
-
ofAll
ImmutableLongBooleanMap ofAll(LongBooleanMap map)
Same aswithAll(LongBooleanMap).
-
withAll
ImmutableLongBooleanMap withAll(LongBooleanMap map)
-
from
<T> ImmutableLongBooleanMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-