Class ImmutableShortBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableShortBooleanMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableShortBooleanMapFactory
public class ImmutableShortBooleanMapFactoryImpl extends Object implements ImmutableShortBooleanMapFactory
ImmutableShortBooleanMapFactoryImpl is a factory implementation which creates instances of typeImmutableShortBooleanMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableShortBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableShortBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableShortBooleanMapempty()<T> ImmutableShortBooleanMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)ImmutableShortBooleanMapof()ImmutableShortBooleanMapof(short key, boolean value)ImmutableShortBooleanMapofAll(ShortBooleanMap map)ImmutableShortBooleanMapwith()ImmutableShortBooleanMapwith(short key, boolean value)ImmutableShortBooleanMapwithAll(ShortBooleanMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableShortBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableShortBooleanMap empty()
- Specified by:
emptyin interfaceImmutableShortBooleanMapFactory
-
of
public ImmutableShortBooleanMap of()
- Specified by:
ofin interfaceImmutableShortBooleanMapFactory
-
with
public ImmutableShortBooleanMap with()
- Specified by:
within interfaceImmutableShortBooleanMapFactory
-
of
public ImmutableShortBooleanMap of(short key, boolean value)
- Specified by:
ofin interfaceImmutableShortBooleanMapFactory
-
with
public ImmutableShortBooleanMap with(short key, boolean value)
- Specified by:
within interfaceImmutableShortBooleanMapFactory
-
ofAll
public ImmutableShortBooleanMap ofAll(ShortBooleanMap map)
- Specified by:
ofAllin interfaceImmutableShortBooleanMapFactory
-
withAll
public ImmutableShortBooleanMap withAll(ShortBooleanMap map)
- Specified by:
withAllin interfaceImmutableShortBooleanMapFactory
-
from
public <T> ImmutableShortBooleanMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableShortBooleanMapFactory
-
-