Class ImmutableIntBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntBooleanMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableIntBooleanMapFactory
public class ImmutableIntBooleanMapFactoryImpl extends Object implements ImmutableIntBooleanMapFactory
ImmutableIntBooleanMapFactoryImpl is a factory implementation which creates instances of typeImmutableIntBooleanMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableIntBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableIntBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableIntBooleanMapempty()<T> ImmutableIntBooleanMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)ImmutableIntBooleanMapof()ImmutableIntBooleanMapof(int key, boolean value)ImmutableIntBooleanMapofAll(IntBooleanMap map)ImmutableIntBooleanMapwith()ImmutableIntBooleanMapwith(int key, boolean value)ImmutableIntBooleanMapwithAll(IntBooleanMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableIntBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableIntBooleanMap empty()
- Specified by:
emptyin interfaceImmutableIntBooleanMapFactory
-
of
public ImmutableIntBooleanMap of()
- Specified by:
ofin interfaceImmutableIntBooleanMapFactory
-
with
public ImmutableIntBooleanMap with()
- Specified by:
within interfaceImmutableIntBooleanMapFactory
-
of
public ImmutableIntBooleanMap of(int key, boolean value)
- Specified by:
ofin interfaceImmutableIntBooleanMapFactory
-
with
public ImmutableIntBooleanMap with(int key, boolean value)
- Specified by:
within interfaceImmutableIntBooleanMapFactory
-
ofAll
public ImmutableIntBooleanMap ofAll(IntBooleanMap map)
- Specified by:
ofAllin interfaceImmutableIntBooleanMapFactory
-
withAll
public ImmutableIntBooleanMap withAll(IntBooleanMap map)
- Specified by:
withAllin interfaceImmutableIntBooleanMapFactory
-
from
public <T> ImmutableIntBooleanMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableIntBooleanMapFactory
-
-