Class MutableByteObjectMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableByteObjectMapFactoryImpl
- All Implemented Interfaces:
MutableByteObjectMapFactory
MutableByteObjectMapFactoryImpl is a factory implementation which creates instances of type
MutableByteObjectMap
.
This file was automatically generated from template file mutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 6.0.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<V> MutableByteObjectMap<V>
empty()
<T,
V> MutableByteObjectMap<V> from
(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 Details
-
INSTANCE
-
-
Constructor Details
-
MutableByteObjectMapFactoryImpl
public MutableByteObjectMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableByteObjectMapFactory
-
of
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
.- Specified by:
of
in interfaceMutableByteObjectMapFactory
-
with
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
.- Specified by:
with
in interfaceMutableByteObjectMapFactory
-
of
- Specified by:
of
in interfaceMutableByteObjectMapFactory
-
with
- Specified by:
with
in interfaceMutableByteObjectMapFactory
-
of
- Specified by:
of
in interfaceMutableByteObjectMapFactory
-
with
- 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
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableByteObjectMapFactory
-
withInitialCapacity
Description copied from interface:MutableByteObjectMapFactory
Same asMutableByteObjectMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableByteObjectMapFactory
-
ofAll
Description copied from interface:MutableByteObjectMapFactory
- Specified by:
ofAll
in interfaceMutableByteObjectMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableByteObjectMapFactory
-
from
public <T,V> MutableByteObjectMap<V> from(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
-