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 MutableLongByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableLongByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongByteMapempty()<T> MutableLongByteMapfrom(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongByteMapof()Same asMutableLongByteMapFactory.empty().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)Same asMutableLongByteMapFactory.empty().MutableLongByteMapwith()Same asMutableLongByteMapFactory.empty().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)Same asMutableLongByteMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableLongByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableLongByteMap empty()
- Specified by:
emptyin interfaceMutableLongByteMapFactory
-
of
public MutableLongByteMap of()
Description copied from interface:MutableLongByteMapFactorySame asMutableLongByteMapFactory.empty().- Specified by:
ofin interfaceMutableLongByteMapFactory
-
with
public MutableLongByteMap with()
Description copied from interface:MutableLongByteMapFactorySame asMutableLongByteMapFactory.empty().- 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)
Description copied from interface:MutableLongByteMapFactorySame asMutableLongByteMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableLongByteMapFactory
-
withInitialCapacity
public MutableLongByteMap withInitialCapacity(int capacity)
Description copied from interface:MutableLongByteMapFactorySame asMutableLongByteMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableLongByteMapFactory
-
ofAll
public MutableLongByteMap ofAll(LongByteMap map)
Description copied from interface:MutableLongByteMapFactory- Specified by:
ofAllin interfaceMutableLongByteMapFactory
-
withAll
public MutableLongByteMap withAll(LongByteMap map)
- Specified by:
withAllin interfaceMutableLongByteMapFactory
-
from
public <T> MutableLongByteMap from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Description copied from interface:MutableLongByteMapFactoryCreates anMutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableLongByteMapFactory
-
-