Class MutableShortBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableShortBooleanMapFactoryImpl
-
- All Implemented Interfaces:
MutableShortBooleanMapFactory
public class MutableShortBooleanMapFactoryImpl extends Object implements MutableShortBooleanMapFactory
MutableShortBooleanMapFactoryImpl is a factory implementation which creates instances of typeMutableShortBooleanMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableShortBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableShortBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableShortBooleanMapempty()<T> MutableShortBooleanMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)MutableShortBooleanMapof()MutableShortBooleanMapof(short key, boolean value)MutableShortBooleanMapof(short key1, boolean value1, short key2, boolean value2)MutableShortBooleanMapof(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3)MutableShortBooleanMapof(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4)MutableShortBooleanMapofAll(ShortBooleanMap map)MutableShortBooleanMapofInitialCapacity(int capacity)MutableShortBooleanMapwith()MutableShortBooleanMapwith(short key, boolean value)MutableShortBooleanMapwith(short key1, boolean value1, short key2, boolean value2)MutableShortBooleanMapwith(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3)MutableShortBooleanMapwith(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4)MutableShortBooleanMapwithAll(ShortBooleanMap map)MutableShortBooleanMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableShortBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableShortBooleanMap empty()
- Specified by:
emptyin interfaceMutableShortBooleanMapFactory
-
of
public MutableShortBooleanMap of()
- Specified by:
ofin interfaceMutableShortBooleanMapFactory
-
with
public MutableShortBooleanMap with()
- Specified by:
within interfaceMutableShortBooleanMapFactory
-
with
public MutableShortBooleanMap with(short key, boolean value)
- Specified by:
within interfaceMutableShortBooleanMapFactory
-
of
public MutableShortBooleanMap of(short key, boolean value)
- Specified by:
ofin interfaceMutableShortBooleanMapFactory
-
of
public MutableShortBooleanMap of(short key1, boolean value1, short key2, boolean value2)
- Specified by:
ofin interfaceMutableShortBooleanMapFactory
-
with
public MutableShortBooleanMap with(short key1, boolean value1, short key2, boolean value2)
- Specified by:
within interfaceMutableShortBooleanMapFactory
-
of
public MutableShortBooleanMap of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3)
- Specified by:
ofin interfaceMutableShortBooleanMapFactory
-
with
public MutableShortBooleanMap with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3)
- Specified by:
within interfaceMutableShortBooleanMapFactory
-
of
public MutableShortBooleanMap of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4)
- Specified by:
ofin interfaceMutableShortBooleanMapFactory
-
with
public MutableShortBooleanMap with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4)
- Specified by:
within interfaceMutableShortBooleanMapFactory
-
ofInitialCapacity
public MutableShortBooleanMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableShortBooleanMapFactory
-
withInitialCapacity
public MutableShortBooleanMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableShortBooleanMapFactory
-
ofAll
public MutableShortBooleanMap ofAll(ShortBooleanMap map)
- Specified by:
ofAllin interfaceMutableShortBooleanMapFactory
-
withAll
public MutableShortBooleanMap withAll(ShortBooleanMap map)
- Specified by:
withAllin interfaceMutableShortBooleanMapFactory
-
from
public <T> MutableShortBooleanMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableShortBooleanMapFactory
-
-