Class MutableByteObjectMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteObjectMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteObjectMapFactory
public class MutableByteObjectMapFactoryImpl extends Object implements MutableByteObjectMapFactory
MutableByteObjectMapFactoryImpl is a factory implementation which creates instances of typeMutableByteObjectMap. This file was automatically generated from template file mutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteObjectMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteObjectMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V> MutableByteObjectMap<V>empty()<T,V>
MutableByteObjectMap<V>from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<V> MutableByteObjectMap<V>of()<V> MutableByteObjectMap<V>of(byte key, V value)<V> MutableByteObjectMap<V>of(byte key1, V value1, byte key2, V value2)<V> MutableByteObjectMap<V>of(byte key1, V value1, byte key2, V value2, byte key3, V value3)<V> MutableByteObjectMap<V>of(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)<V> MutableByteObjectMap<V>ofAll(ByteObjectMap<? extends V> map)<V> MutableByteObjectMap<V>ofInitialCapacity(int capacity)<V> MutableByteObjectMap<V>with()<V> MutableByteObjectMap<V>with(byte key, V value)<V> MutableByteObjectMap<V>with(byte key1, V value1, byte key2, V value2)<V> MutableByteObjectMap<V>with(byte key1, V value1, byte key2, V value2, byte key3, V value3)<V> MutableByteObjectMap<V>with(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)<V> MutableByteObjectMap<V>withAll(ByteObjectMap<? extends V> map)<V> MutableByteObjectMap<V>withInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteObjectMapFactory INSTANCE
-
-
Method Detail
-
empty
public <V> MutableByteObjectMap<V> empty()
- Specified by:
emptyin interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of()
- Specified by:
ofin interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with()
- Specified by:
within interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of(byte key, V value)
- Specified by:
ofin interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with(byte key, V value)
- Specified by:
within interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of(byte key1, V value1, byte key2, V value2)
- Specified by:
ofin interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with(byte key1, V value1, byte key2, V value2)
- Specified by:
within interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of(byte key1, V value1, byte key2, V value2, byte key3, V value3)
- Specified by:
ofin interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with(byte key1, V value1, byte key2, V value2, byte key3, V value3)
- Specified by:
within interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)
- Specified by:
ofin interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with(byte key1, V value1, byte key2, V value2, byte key3, V value3, byte key4, V value4)
- Specified by:
within interfaceMutableByteObjectMapFactory
-
ofInitialCapacity
public <V> MutableByteObjectMap<V> ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableByteObjectMapFactory
-
withInitialCapacity
public <V> MutableByteObjectMap<V> withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableByteObjectMapFactory
-
ofAll
public <V> MutableByteObjectMap<V> ofAll(ByteObjectMap<? extends V> map)
- Specified by:
ofAllin interfaceMutableByteObjectMapFactory
-
withAll
public <V> MutableByteObjectMap<V> withAll(ByteObjectMap<? extends V> map)
- Specified by:
withAllin interfaceMutableByteObjectMapFactory
-
from
public <T,V> MutableByteObjectMap<V> from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
- Specified by:
fromin interfaceMutableByteObjectMapFactory
-
-