Class ImmutableByteBooleanMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteBooleanMapFactoryImpl
- All Implemented Interfaces:
ImmutableByteBooleanMapFactory
public class ImmutableByteBooleanMapFactoryImpl
extends Object
implements ImmutableByteBooleanMapFactory
ImmutableByteBooleanMapFactoryImpl is a factory implementation which creates instances of type
ImmutableByteBooleanMap
.
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, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
of
(byte key, boolean value) ofAll
(ByteBooleanMap map) with()
with
(byte key, boolean value) withAll
(ByteBooleanMap map)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
ImmutableByteBooleanMapFactoryImpl
public ImmutableByteBooleanMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceImmutableByteBooleanMapFactory
-
of
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
of
in interfaceImmutableByteBooleanMapFactory
-
with
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
with
in interfaceImmutableByteBooleanMapFactory
-
of
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
of
in interfaceImmutableByteBooleanMapFactory
-
with
- Specified by:
with
in interfaceImmutableByteBooleanMapFactory
-
ofAll
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
ofAll
in interfaceImmutableByteBooleanMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableByteBooleanMapFactory
-
from
public <T> ImmutableByteBooleanMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Description copied from interface:ImmutableByteBooleanMapFactory
Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableByteBooleanMapFactory
-