Class MutableByteBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteBooleanMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteBooleanMapFactory
public class MutableByteBooleanMapFactoryImpl extends java.lang.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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteBooleanMapof()Same asMutableByteBooleanMapFactory.empty().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)Same asMutableByteBooleanMapFactory.empty().MutableByteBooleanMapwith()Same asMutableByteBooleanMapFactory.empty().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)Same asMutableByteBooleanMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteBooleanMap empty()
- Specified by:
emptyin interfaceMutableByteBooleanMapFactory
-
of
public MutableByteBooleanMap of()
Description copied from interface:MutableByteBooleanMapFactorySame asMutableByteBooleanMapFactory.empty().- Specified by:
ofin interfaceMutableByteBooleanMapFactory
-
with
public MutableByteBooleanMap with()
Description copied from interface:MutableByteBooleanMapFactorySame asMutableByteBooleanMapFactory.empty().- 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)
Description copied from interface:MutableByteBooleanMapFactorySame asMutableByteBooleanMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableByteBooleanMapFactory
-
withInitialCapacity
public MutableByteBooleanMap withInitialCapacity(int capacity)
Description copied from interface:MutableByteBooleanMapFactorySame asMutableByteBooleanMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableByteBooleanMapFactory
-
ofAll
public MutableByteBooleanMap ofAll(ByteBooleanMap map)
Description copied from interface:MutableByteBooleanMapFactory- Specified by:
ofAllin interfaceMutableByteBooleanMapFactory
-
withAll
public MutableByteBooleanMap withAll(ByteBooleanMap map)
- Specified by:
withAllin interfaceMutableByteBooleanMapFactory
-
from
public <T> MutableByteBooleanMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Description copied from interface:MutableByteBooleanMapFactoryCreates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableByteBooleanMapFactory
-
-