Class MutableByteObjectMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteObjectMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteObjectMapFactory
public class MutableByteObjectMapFactoryImpl extends java.lang.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 MutableByteObjectMapFactory
INSTANCE
-
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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableByteObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> MutableByteObjectMap<V>
of()
Same asMutableByteObjectMapFactory.empty()
.<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)
Same asMutableByteObjectMapFactory.empty()
.<V> MutableByteObjectMap<V>
with()
Same asMutableByteObjectMapFactory.empty()
.<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)
Same asMutableByteObjectMapFactory.empty()
.
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteObjectMapFactory INSTANCE
-
-
Method Detail
-
empty
public <V> MutableByteObjectMap<V> empty()
- Specified by:
empty
in interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of()
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
.- Specified by:
of
in interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with()
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
.- Specified by:
with
in interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of(byte key, V value)
- Specified by:
of
in interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with(byte key, V value)
- Specified by:
with
in interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of(byte key1, V value1, byte key2, V value2)
- Specified by:
of
in interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with(byte key1, V value1, byte key2, V value2)
- Specified by:
with
in interfaceMutableByteObjectMapFactory
-
of
public <V> MutableByteObjectMap<V> of(byte key1, V value1, byte key2, V value2, byte key3, V value3)
- Specified by:
of
in interfaceMutableByteObjectMapFactory
-
with
public <V> MutableByteObjectMap<V> with(byte key1, V value1, byte key2, V value2, byte key3, V value3)
- Specified by:
with
in 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:
of
in 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:
with
in interfaceMutableByteObjectMapFactory
-
ofInitialCapacity
public <V> MutableByteObjectMap<V> ofInitialCapacity(int capacity)
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableByteObjectMapFactory
-
withInitialCapacity
public <V> MutableByteObjectMap<V> withInitialCapacity(int capacity)
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableByteObjectMapFactory
-
ofAll
public <V> MutableByteObjectMap<V> ofAll(ByteObjectMap<? extends V> map)
Description copied from interface:MutableByteObjectMapFactory
- Specified by:
ofAll
in interfaceMutableByteObjectMapFactory
-
withAll
public <V> MutableByteObjectMap<V> withAll(ByteObjectMap<? extends V> map)
- Specified by:
withAll
in interfaceMutableByteObjectMapFactory
-
from
public <T,V> MutableByteObjectMap<V> from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Description copied from interface:MutableByteObjectMapFactory
Creates anMutableByteObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableByteObjectMapFactory
-
-