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