Class MutableCharBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableCharBooleanMapFactoryImpl
-
- All Implemented Interfaces:
MutableCharBooleanMapFactory
public class MutableCharBooleanMapFactoryImpl extends java.lang.Object implements MutableCharBooleanMapFactory
MutableCharBooleanMapFactoryImpl is a factory implementation which creates instances of typeMutableCharBooleanMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableCharBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableCharBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableCharBooleanMapempty()<T> MutableCharBooleanMapfrom(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharBooleanMapof()Same asMutableCharBooleanMapFactory.empty().MutableCharBooleanMapof(char key, boolean value)MutableCharBooleanMapof(char key1, boolean value1, char key2, boolean value2)MutableCharBooleanMapof(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3)MutableCharBooleanMapof(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4)MutableCharBooleanMapofAll(CharBooleanMap map)MutableCharBooleanMapofInitialCapacity(int capacity)Same asMutableCharBooleanMapFactory.empty().MutableCharBooleanMapwith()Same asMutableCharBooleanMapFactory.empty().MutableCharBooleanMapwith(char key, boolean value)MutableCharBooleanMapwith(char key1, boolean value1, char key2, boolean value2)MutableCharBooleanMapwith(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3)MutableCharBooleanMapwith(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4)MutableCharBooleanMapwithAll(CharBooleanMap map)MutableCharBooleanMapwithInitialCapacity(int capacity)Same asMutableCharBooleanMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableCharBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableCharBooleanMap empty()
- Specified by:
emptyin interfaceMutableCharBooleanMapFactory
-
of
public MutableCharBooleanMap of()
Description copied from interface:MutableCharBooleanMapFactorySame asMutableCharBooleanMapFactory.empty().- Specified by:
ofin interfaceMutableCharBooleanMapFactory
-
with
public MutableCharBooleanMap with()
Description copied from interface:MutableCharBooleanMapFactorySame asMutableCharBooleanMapFactory.empty().- Specified by:
within interfaceMutableCharBooleanMapFactory
-
with
public MutableCharBooleanMap with(char key, boolean value)
- Specified by:
within interfaceMutableCharBooleanMapFactory
-
of
public MutableCharBooleanMap of(char key, boolean value)
- Specified by:
ofin interfaceMutableCharBooleanMapFactory
-
of
public MutableCharBooleanMap of(char key1, boolean value1, char key2, boolean value2)
- Specified by:
ofin interfaceMutableCharBooleanMapFactory
-
with
public MutableCharBooleanMap with(char key1, boolean value1, char key2, boolean value2)
- Specified by:
within interfaceMutableCharBooleanMapFactory
-
of
public MutableCharBooleanMap of(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3)
- Specified by:
ofin interfaceMutableCharBooleanMapFactory
-
with
public MutableCharBooleanMap with(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3)
- Specified by:
within interfaceMutableCharBooleanMapFactory
-
of
public MutableCharBooleanMap of(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4)
- Specified by:
ofin interfaceMutableCharBooleanMapFactory
-
with
public MutableCharBooleanMap with(char key1, boolean value1, char key2, boolean value2, char key3, boolean value3, char key4, boolean value4)
- Specified by:
within interfaceMutableCharBooleanMapFactory
-
ofInitialCapacity
public MutableCharBooleanMap ofInitialCapacity(int capacity)
Description copied from interface:MutableCharBooleanMapFactorySame asMutableCharBooleanMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableCharBooleanMapFactory
-
withInitialCapacity
public MutableCharBooleanMap withInitialCapacity(int capacity)
Description copied from interface:MutableCharBooleanMapFactorySame asMutableCharBooleanMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableCharBooleanMapFactory
-
ofAll
public MutableCharBooleanMap ofAll(CharBooleanMap map)
Description copied from interface:MutableCharBooleanMapFactory- Specified by:
ofAllin interfaceMutableCharBooleanMapFactory
-
withAll
public MutableCharBooleanMap withAll(CharBooleanMap map)
- Specified by:
withAllin interfaceMutableCharBooleanMapFactory
-
from
public <T> MutableCharBooleanMap from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Description copied from interface:MutableCharBooleanMapFactoryCreates anMutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableCharBooleanMapFactory
-
-