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 typeImmutableByteBooleanMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteBooleanMapempty()<T> ImmutableByteBooleanMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)ImmutableByteBooleanMapof()ImmutableByteBooleanMapof(byte key, boolean value)ImmutableByteBooleanMapofAll(ByteBooleanMap map)ImmutableByteBooleanMapwith()ImmutableByteBooleanMapwith(byte key, boolean value)ImmutableByteBooleanMapwithAll(ByteBooleanMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteBooleanMap empty()
- Specified by:
emptyin interfaceImmutableByteBooleanMapFactory
-
of
public ImmutableByteBooleanMap of()
- Specified by:
ofin interfaceImmutableByteBooleanMapFactory
-
with
public ImmutableByteBooleanMap with()
- Specified by:
within interfaceImmutableByteBooleanMapFactory
-
of
public ImmutableByteBooleanMap of(byte key, boolean value)
- Specified by:
ofin interfaceImmutableByteBooleanMapFactory
-
with
public ImmutableByteBooleanMap with(byte key, boolean value)
- Specified by:
within interfaceImmutableByteBooleanMapFactory
-
ofAll
public ImmutableByteBooleanMap ofAll(ByteBooleanMap map)
- Specified by:
ofAllin interfaceImmutableByteBooleanMapFactory
-
withAll
public ImmutableByteBooleanMap withAll(ByteBooleanMap map)
- Specified by:
withAllin interfaceImmutableByteBooleanMapFactory
-
from
public <T> ImmutableByteBooleanMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableByteBooleanMapFactory
-
-