Class ImmutableCharBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharBooleanMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharBooleanMapFactory
public class ImmutableCharBooleanMapFactoryImpl extends Object implements ImmutableCharBooleanMapFactory
ImmutableCharBooleanMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharBooleanMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharBooleanMapempty()<T> ImmutableCharBooleanMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)ImmutableCharBooleanMapof()ImmutableCharBooleanMapof(char key, boolean value)ImmutableCharBooleanMapofAll(CharBooleanMap map)ImmutableCharBooleanMapwith()ImmutableCharBooleanMapwith(char key, boolean value)ImmutableCharBooleanMapwithAll(CharBooleanMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharBooleanMap empty()
- Specified by:
emptyin interfaceImmutableCharBooleanMapFactory
-
of
public ImmutableCharBooleanMap of()
- Specified by:
ofin interfaceImmutableCharBooleanMapFactory
-
with
public ImmutableCharBooleanMap with()
- Specified by:
within interfaceImmutableCharBooleanMapFactory
-
of
public ImmutableCharBooleanMap of(char key, boolean value)
- Specified by:
ofin interfaceImmutableCharBooleanMapFactory
-
with
public ImmutableCharBooleanMap with(char key, boolean value)
- Specified by:
within interfaceImmutableCharBooleanMapFactory
-
ofAll
public ImmutableCharBooleanMap ofAll(CharBooleanMap map)
- Specified by:
ofAllin interfaceImmutableCharBooleanMapFactory
-
withAll
public ImmutableCharBooleanMap withAll(CharBooleanMap map)
- Specified by:
withAllin interfaceImmutableCharBooleanMapFactory
-
from
public <T> ImmutableCharBooleanMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharBooleanMapFactory
-
-