Class MutableLongByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableLongByteMapFactoryImpl
-
- All Implemented Interfaces:
MutableLongByteMapFactory
public class MutableLongByteMapFactoryImpl extends java.lang.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 MutableLongByteMapFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableLongByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongByteMap
empty()
<T> MutableLongByteMap
from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongByteMap
of()
Same asMutableLongByteMapFactory.empty()
.MutableLongByteMap
of(long key, byte value)
MutableLongByteMap
of(long key1, byte value1, long key2, byte value2)
MutableLongByteMap
of(long key1, byte value1, long key2, byte value2, long key3, byte value3)
MutableLongByteMap
of(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
MutableLongByteMap
ofAll(LongByteMap map)
MutableLongByteMap
ofInitialCapacity(int capacity)
Same asMutableLongByteMapFactory.empty()
.MutableLongByteMap
with()
Same asMutableLongByteMapFactory.empty()
.MutableLongByteMap
with(long key, byte value)
MutableLongByteMap
with(long key1, byte value1, long key2, byte value2)
MutableLongByteMap
with(long key1, byte value1, long key2, byte value2, long key3, byte value3)
MutableLongByteMap
with(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
MutableLongByteMap
withAll(LongByteMap map)
MutableLongByteMap
withInitialCapacity(int capacity)
Same asMutableLongByteMapFactory.empty()
.
-
-
-
Field Detail
-
INSTANCE
public static final MutableLongByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableLongByteMap empty()
- Specified by:
empty
in interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of()
Description copied from interface:MutableLongByteMapFactory
Same asMutableLongByteMapFactory.empty()
.- Specified by:
of
in interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with()
Description copied from interface:MutableLongByteMapFactory
Same asMutableLongByteMapFactory.empty()
.- Specified by:
with
in interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key, byte value)
- Specified by:
with
in interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key, byte value)
- Specified by:
of
in interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key1, byte value1, long key2, byte value2)
- Specified by:
of
in interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key1, byte value1, long key2, byte value2)
- Specified by:
with
in interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key1, byte value1, long key2, byte value2, long key3, byte value3)
- Specified by:
of
in interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key1, byte value1, long key2, byte value2, long key3, byte value3)
- Specified by:
with
in interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
- Specified by:
of
in interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with(long key1, byte value1, long key2, byte value2, long key3, byte value3, long key4, byte value4)
- Specified by:
with
in interfaceMutableLongByteMapFactory
-
ofInitialCapacity
public MutableLongByteMap ofInitialCapacity(int capacity)
Description copied from interface:MutableLongByteMapFactory
Same asMutableLongByteMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableLongByteMapFactory
-
withInitialCapacity
public MutableLongByteMap withInitialCapacity(int capacity)
Description copied from interface:MutableLongByteMapFactory
Same asMutableLongByteMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableLongByteMapFactory
-
ofAll
public MutableLongByteMap ofAll(LongByteMap map)
Description copied from interface:MutableLongByteMapFactory
- Specified by:
ofAll
in interfaceMutableLongByteMapFactory
-
withAll
public MutableLongByteMap withAll(LongByteMap map)
- Specified by:
withAll
in interfaceMutableLongByteMapFactory
-
from
public <T> MutableLongByteMap from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Description copied from interface:MutableLongByteMapFactory
Creates anMutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableLongByteMapFactory
-
-