Class ImmutableObjectShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectShortMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableObjectShortMapFactory
public class ImmutableObjectShortMapFactoryImpl extends Object implements ImmutableObjectShortMapFactory
ImmutableObjectShortMapFactoryImpl is a factory implementation which creates instances of typeImmutableObjectShortMap. This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableObjectShortMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableObjectShortMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K> ImmutableObjectShortMap<K>empty()<T,K>
ImmutableObjectShortMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)<K> ImmutableObjectShortMap<K>of()<K> ImmutableObjectShortMap<K>of(K key, short value)<K> ImmutableObjectShortMap<K>ofAll(ObjectShortMap<? extends K> map)<K> ImmutableObjectShortMap<K>with()<K> ImmutableObjectShortMap<K>with(K key, short value)<K> ImmutableObjectShortMap<K>withAll(ObjectShortMap<? extends K> map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableObjectShortMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K> ImmutableObjectShortMap<K> empty()
- Specified by:
emptyin interfaceImmutableObjectShortMapFactory
-
of
public <K> ImmutableObjectShortMap<K> of()
- Specified by:
ofin interfaceImmutableObjectShortMapFactory
-
with
public <K> ImmutableObjectShortMap<K> with()
- Specified by:
within interfaceImmutableObjectShortMapFactory
-
of
public <K> ImmutableObjectShortMap<K> of(K key, short value)
- Specified by:
ofin interfaceImmutableObjectShortMapFactory
-
with
public <K> ImmutableObjectShortMap<K> with(K key, short value)
- Specified by:
within interfaceImmutableObjectShortMapFactory
-
ofAll
public <K> ImmutableObjectShortMap<K> ofAll(ObjectShortMap<? extends K> map)
- Specified by:
ofAllin interfaceImmutableObjectShortMapFactory
-
withAll
public <K> ImmutableObjectShortMap<K> withAll(ObjectShortMap<? extends K> map)
- Specified by:
withAllin interfaceImmutableObjectShortMapFactory
-
from
public <T,K> ImmutableObjectShortMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableObjectShortMapFactory
-
-