Class ImmutableObjectShortMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectShortMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableObjectShortMapFactory
public class ImmutableObjectShortMapFactoryImpl extends java.lang.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 ImmutableObjectShortMapFactory
INSTANCE
-
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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableObjectShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<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:
empty
in interfaceImmutableObjectShortMapFactory
-
of
public <K> ImmutableObjectShortMap<K> of()
Description copied from interface:ImmutableObjectShortMapFactory
- Specified by:
of
in interfaceImmutableObjectShortMapFactory
-
with
public <K> ImmutableObjectShortMap<K> with()
Description copied from interface:ImmutableObjectShortMapFactory
- Specified by:
with
in interfaceImmutableObjectShortMapFactory
-
of
public <K> ImmutableObjectShortMap<K> of(K key, short value)
Description copied from interface:ImmutableObjectShortMapFactory
- Specified by:
of
in interfaceImmutableObjectShortMapFactory
-
with
public <K> ImmutableObjectShortMap<K> with(K key, short value)
- Specified by:
with
in interfaceImmutableObjectShortMapFactory
-
ofAll
public <K> ImmutableObjectShortMap<K> ofAll(ObjectShortMap<? extends K> map)
Description copied from interface:ImmutableObjectShortMapFactory
- Specified by:
ofAll
in interfaceImmutableObjectShortMapFactory
-
withAll
public <K> ImmutableObjectShortMap<K> withAll(ObjectShortMap<? extends K> map)
- Specified by:
withAll
in interfaceImmutableObjectShortMapFactory
-
from
public <T,K> ImmutableObjectShortMap<K> from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
Description copied from interface:ImmutableObjectShortMapFactory
Creates anImmutableObjectShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableObjectShortMapFactory
-
-