Class MutableByteBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteBooleanMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteBooleanMapFactory
public class MutableByteBooleanMapFactoryImpl extends Object implements MutableByteBooleanMapFactory
MutableByteBooleanMapFactoryImpl is a factory implementation which creates instances of typeMutableByteBooleanMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteBooleanMapempty()<T> MutableByteBooleanMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)MutableByteBooleanMapof()MutableByteBooleanMapof(byte key, boolean value)MutableByteBooleanMapof(byte key1, boolean value1, byte key2, boolean value2)MutableByteBooleanMapof(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3)MutableByteBooleanMapof(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4)MutableByteBooleanMapofAll(ByteBooleanMap map)MutableByteBooleanMapofInitialCapacity(int capacity)MutableByteBooleanMapwith()MutableByteBooleanMapwith(byte key, boolean value)MutableByteBooleanMapwith(byte key1, boolean value1, byte key2, boolean value2)MutableByteBooleanMapwith(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3)MutableByteBooleanMapwith(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4)MutableByteBooleanMapwithAll(ByteBooleanMap map)MutableByteBooleanMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteBooleanMap empty()
- Specified by:
emptyin interfaceMutableByteBooleanMapFactory
-
of
public MutableByteBooleanMap of()
- Specified by:
ofin interfaceMutableByteBooleanMapFactory
-
with
public MutableByteBooleanMap with()
- Specified by:
within interfaceMutableByteBooleanMapFactory
-
with
public MutableByteBooleanMap with(byte key, boolean value)
- Specified by:
within interfaceMutableByteBooleanMapFactory
-
of
public MutableByteBooleanMap of(byte key, boolean value)
- Specified by:
ofin interfaceMutableByteBooleanMapFactory
-
of
public MutableByteBooleanMap of(byte key1, boolean value1, byte key2, boolean value2)
- Specified by:
ofin interfaceMutableByteBooleanMapFactory
-
with
public MutableByteBooleanMap with(byte key1, boolean value1, byte key2, boolean value2)
- Specified by:
within interfaceMutableByteBooleanMapFactory
-
of
public MutableByteBooleanMap of(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3)
- Specified by:
ofin interfaceMutableByteBooleanMapFactory
-
with
public MutableByteBooleanMap with(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3)
- Specified by:
within interfaceMutableByteBooleanMapFactory
-
of
public MutableByteBooleanMap of(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4)
- Specified by:
ofin interfaceMutableByteBooleanMapFactory
-
with
public MutableByteBooleanMap with(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4)
- Specified by:
within interfaceMutableByteBooleanMapFactory
-
ofInitialCapacity
public MutableByteBooleanMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableByteBooleanMapFactory
-
withInitialCapacity
public MutableByteBooleanMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableByteBooleanMapFactory
-
ofAll
public MutableByteBooleanMap ofAll(ByteBooleanMap map)
- Specified by:
ofAllin interfaceMutableByteBooleanMapFactory
-
withAll
public MutableByteBooleanMap withAll(ByteBooleanMap map)
- Specified by:
withAllin interfaceMutableByteBooleanMapFactory
-
from
public <T> MutableByteBooleanMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableByteBooleanMapFactory
-
-