Class MutableIntByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableIntByteMapFactoryImpl
-
- All Implemented Interfaces:
MutableIntByteMapFactory
public class MutableIntByteMapFactoryImpl extends Object implements MutableIntByteMapFactory
MutableIntByteMapFactoryImpl is a factory implementation which creates instances of typeMutableIntByteMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableIntByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableIntByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableIntByteMapempty()<T> MutableIntByteMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableIntByteMapof()MutableIntByteMapof(int key, byte value)MutableIntByteMapof(int key1, byte value1, int key2, byte value2)MutableIntByteMapof(int key1, byte value1, int key2, byte value2, int key3, byte value3)MutableIntByteMapof(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)MutableIntByteMapofAll(IntByteMap map)MutableIntByteMapofInitialCapacity(int capacity)MutableIntByteMapwith()MutableIntByteMapwith(int key, byte value)MutableIntByteMapwith(int key1, byte value1, int key2, byte value2)MutableIntByteMapwith(int key1, byte value1, int key2, byte value2, int key3, byte value3)MutableIntByteMapwith(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)MutableIntByteMapwithAll(IntByteMap map)MutableIntByteMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableIntByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableIntByteMap empty()
- Specified by:
emptyin interfaceMutableIntByteMapFactory
-
of
public MutableIntByteMap of()
- Specified by:
ofin interfaceMutableIntByteMapFactory
-
with
public MutableIntByteMap with()
- Specified by:
within interfaceMutableIntByteMapFactory
-
with
public MutableIntByteMap with(int key, byte value)
- Specified by:
within interfaceMutableIntByteMapFactory
-
of
public MutableIntByteMap of(int key, byte value)
- Specified by:
ofin interfaceMutableIntByteMapFactory
-
of
public MutableIntByteMap of(int key1, byte value1, int key2, byte value2)
- Specified by:
ofin interfaceMutableIntByteMapFactory
-
with
public MutableIntByteMap with(int key1, byte value1, int key2, byte value2)
- Specified by:
within interfaceMutableIntByteMapFactory
-
of
public MutableIntByteMap of(int key1, byte value1, int key2, byte value2, int key3, byte value3)
- Specified by:
ofin interfaceMutableIntByteMapFactory
-
with
public MutableIntByteMap with(int key1, byte value1, int key2, byte value2, int key3, byte value3)
- Specified by:
within interfaceMutableIntByteMapFactory
-
of
public MutableIntByteMap of(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)
- Specified by:
ofin interfaceMutableIntByteMapFactory
-
with
public MutableIntByteMap with(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)
- Specified by:
within interfaceMutableIntByteMapFactory
-
ofInitialCapacity
public MutableIntByteMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableIntByteMapFactory
-
withInitialCapacity
public MutableIntByteMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableIntByteMapFactory
-
ofAll
public MutableIntByteMap ofAll(IntByteMap map)
- Specified by:
ofAllin interfaceMutableIntByteMapFactory
-
withAll
public MutableIntByteMap withAll(IntByteMap map)
- Specified by:
withAllin interfaceMutableIntByteMapFactory
-
from
public <T> MutableIntByteMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableIntByteMapFactory
-
-