Class MutableByteIntMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteIntMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteIntMapFactory
public class MutableByteIntMapFactoryImpl extends Object implements MutableByteIntMapFactory
MutableByteIntMapFactoryImpl is a factory implementation which creates instances of typeMutableByteIntMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteIntMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteIntMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteIntMapempty()<T> MutableByteIntMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)MutableByteIntMapof()MutableByteIntMapof(byte key, int value)MutableByteIntMapof(byte key1, int value1, byte key2, int value2)MutableByteIntMapof(byte key1, int value1, byte key2, int value2, byte key3, int value3)MutableByteIntMapof(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)MutableByteIntMapofAll(ByteIntMap map)MutableByteIntMapofInitialCapacity(int capacity)MutableByteIntMapwith()MutableByteIntMapwith(byte key, int value)MutableByteIntMapwith(byte key1, int value1, byte key2, int value2)MutableByteIntMapwith(byte key1, int value1, byte key2, int value2, byte key3, int value3)MutableByteIntMapwith(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)MutableByteIntMapwithAll(ByteIntMap map)MutableByteIntMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteIntMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteIntMap empty()
- Specified by:
emptyin interfaceMutableByteIntMapFactory
-
of
public MutableByteIntMap of()
- Specified by:
ofin interfaceMutableByteIntMapFactory
-
with
public MutableByteIntMap with()
- Specified by:
within interfaceMutableByteIntMapFactory
-
with
public MutableByteIntMap with(byte key, int value)
- Specified by:
within interfaceMutableByteIntMapFactory
-
of
public MutableByteIntMap of(byte key, int value)
- Specified by:
ofin interfaceMutableByteIntMapFactory
-
of
public MutableByteIntMap of(byte key1, int value1, byte key2, int value2)
- Specified by:
ofin interfaceMutableByteIntMapFactory
-
with
public MutableByteIntMap with(byte key1, int value1, byte key2, int value2)
- Specified by:
within interfaceMutableByteIntMapFactory
-
of
public MutableByteIntMap of(byte key1, int value1, byte key2, int value2, byte key3, int value3)
- Specified by:
ofin interfaceMutableByteIntMapFactory
-
with
public MutableByteIntMap with(byte key1, int value1, byte key2, int value2, byte key3, int value3)
- Specified by:
within interfaceMutableByteIntMapFactory
-
of
public MutableByteIntMap of(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)
- Specified by:
ofin interfaceMutableByteIntMapFactory
-
with
public MutableByteIntMap with(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4)
- Specified by:
within interfaceMutableByteIntMapFactory
-
ofInitialCapacity
public MutableByteIntMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableByteIntMapFactory
-
withInitialCapacity
public MutableByteIntMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableByteIntMapFactory
-
ofAll
public MutableByteIntMap ofAll(ByteIntMap map)
- Specified by:
ofAllin interfaceMutableByteIntMapFactory
-
withAll
public MutableByteIntMap withAll(ByteIntMap map)
- Specified by:
withAllin interfaceMutableByteIntMapFactory
-
from
public <T> MutableByteIntMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableByteIntMapFactory
-
-