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