Class ImmutableByteBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteBooleanMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteBooleanMapFactory
public class ImmutableByteBooleanMapFactoryImpl extends java.lang.Object implements ImmutableByteBooleanMapFactory
ImmutableByteBooleanMapFactoryImpl is a factory implementation which creates instances of typeImmutableByteBooleanMap
. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteBooleanMapFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteBooleanMap
empty()
<T> ImmutableByteBooleanMap
from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteBooleanMap
of()
ImmutableByteBooleanMap
of(byte key, boolean value)
ImmutableByteBooleanMap
ofAll(ByteBooleanMap map)
ImmutableByteBooleanMap
with()
ImmutableByteBooleanMap
with(byte key, boolean value)
ImmutableByteBooleanMap
withAll(ByteBooleanMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteBooleanMap empty()
- Specified by:
empty
in interfaceImmutableByteBooleanMapFactory
-
of
public ImmutableByteBooleanMap of()
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
of
in interfaceImmutableByteBooleanMapFactory
-
with
public ImmutableByteBooleanMap with()
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
with
in interfaceImmutableByteBooleanMapFactory
-
of
public ImmutableByteBooleanMap of(byte key, boolean value)
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
of
in interfaceImmutableByteBooleanMapFactory
-
with
public ImmutableByteBooleanMap with(byte key, boolean value)
- Specified by:
with
in interfaceImmutableByteBooleanMapFactory
-
ofAll
public ImmutableByteBooleanMap ofAll(ByteBooleanMap map)
Description copied from interface:ImmutableByteBooleanMapFactory
- Specified by:
ofAll
in interfaceImmutableByteBooleanMapFactory
-
withAll
public ImmutableByteBooleanMap withAll(ByteBooleanMap map)
- Specified by:
withAll
in interfaceImmutableByteBooleanMapFactory
-
from
public <T> ImmutableByteBooleanMap from(java.lang.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
-
-