Class MutableLongByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableLongByteMapFactoryImpl
-
- All Implemented Interfaces:
MutableLongByteMapFactory
public class MutableLongByteMapFactoryImpl extends Object implements MutableLongByteMapFactory
MutableLongByteMapFactoryImpl is a factory implementation which creates instances of typeMutableLongByteMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableLongByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableLongByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongByteMapempty()<T> MutableLongByteMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)MutableLongByteMapof()MutableLongByteMapof(long key, byte value)MutableLongByteMapof(long key1, byte value1, long key2, byte value2)MutableLongByteMapof(long key1, byte value1, long key2, byte value2, long key3, byte value3)MutableLongByteMapof(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)MutableLongByteMapofAll(LongByteMap map)MutableLongByteMapofInitialCapacity(int capacity)MutableLongByteMapwith()MutableLongByteMapwith(long key, byte value)MutableLongByteMapwith(long key1, byte value1, long key2, byte value2)MutableLongByteMapwith(long key1, byte value1, long key2, byte value2, long key3, byte value3)MutableLongByteMapwith(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)MutableLongByteMapwithAll(LongByteMap map)MutableLongByteMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableLongByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableLongByteMap empty()
- Specified by:
emptyin interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of()
- Specified by:
ofin interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with()
- Specified by:
within interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key, byte value)
- Specified by:
within interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key, byte value)
- Specified by:
ofin interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key1, byte value1, long key2, byte value2)
- Specified by:
ofin interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key1, byte value1, long key2, byte value2)
- Specified by:
within interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key1, byte value1, long key2, byte value2, long key3, byte value3)
- Specified by:
ofin interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key1, byte value1, long key2, byte value2, long key3, byte value3)
- Specified by:
within interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
- Specified by:
ofin interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
- Specified by:
within interfaceMutableLongByteMapFactory
-
ofInitialCapacity
public MutableLongByteMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableLongByteMapFactory
-
withInitialCapacity
public MutableLongByteMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableLongByteMapFactory
-
ofAll
public MutableLongByteMap ofAll(LongByteMap map)
- Specified by:
ofAllin interfaceMutableLongByteMapFactory
-
withAll
public MutableLongByteMap withAll(LongByteMap map)
- Specified by:
withAllin interfaceMutableLongByteMapFactory
-
from
public <T> MutableLongByteMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableLongByteMapFactory
-
-