Class ImmutableLongBooleanMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongBooleanMapFactoryImpl
- All Implemented Interfaces:
ImmutableLongBooleanMapFactory
public class ImmutableLongBooleanMapFactoryImpl
extends Object
implements ImmutableLongBooleanMapFactory
ImmutableLongBooleanMapFactoryImpl is a factory implementation which creates instances of type
ImmutableLongBooleanMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionempty()
from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
of
(long key, boolean value) ofAll
(LongBooleanMap map) with()
with
(long key, boolean value) withAll
(LongBooleanMap map)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
ImmutableLongBooleanMapFactoryImpl
public ImmutableLongBooleanMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceImmutableLongBooleanMapFactory
-
of
Description copied from interface:ImmutableLongBooleanMapFactory
- Specified by:
of
in interfaceImmutableLongBooleanMapFactory
-
with
Description copied from interface:ImmutableLongBooleanMapFactory
- Specified by:
with
in interfaceImmutableLongBooleanMapFactory
-
of
Description copied from interface:ImmutableLongBooleanMapFactory
- Specified by:
of
in interfaceImmutableLongBooleanMapFactory
-
with
- Specified by:
with
in interfaceImmutableLongBooleanMapFactory
-
ofAll
Description copied from interface:ImmutableLongBooleanMapFactory
- Specified by:
ofAll
in interfaceImmutableLongBooleanMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableLongBooleanMapFactory
-
from
public <T> ImmutableLongBooleanMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Description copied from interface:ImmutableLongBooleanMapFactory
Creates anImmutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableLongBooleanMapFactory
-