Class ImmutableDoubleBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableDoubleBooleanMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleBooleanMapFactory
public class ImmutableDoubleBooleanMapFactoryImpl extends Object implements ImmutableDoubleBooleanMapFactory
ImmutableDoubleBooleanMapFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleBooleanMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleBooleanMapempty()<T> ImmutableDoubleBooleanMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)ImmutableDoubleBooleanMapof()ImmutableDoubleBooleanMapof(double key, boolean value)ImmutableDoubleBooleanMapofAll(DoubleBooleanMap map)ImmutableDoubleBooleanMapwith()ImmutableDoubleBooleanMapwith(double key, boolean value)ImmutableDoubleBooleanMapwithAll(DoubleBooleanMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleBooleanMap empty()
- Specified by:
emptyin interfaceImmutableDoubleBooleanMapFactory
-
of
public ImmutableDoubleBooleanMap of()
- Specified by:
ofin interfaceImmutableDoubleBooleanMapFactory
-
with
public ImmutableDoubleBooleanMap with()
- Specified by:
within interfaceImmutableDoubleBooleanMapFactory
-
of
public ImmutableDoubleBooleanMap of(double key, boolean value)
- Specified by:
ofin interfaceImmutableDoubleBooleanMapFactory
-
with
public ImmutableDoubleBooleanMap with(double key, boolean value)
- Specified by:
within interfaceImmutableDoubleBooleanMapFactory
-
ofAll
public ImmutableDoubleBooleanMap ofAll(DoubleBooleanMap map)
- Specified by:
ofAllin interfaceImmutableDoubleBooleanMapFactory
-
withAll
public ImmutableDoubleBooleanMap withAll(DoubleBooleanMap map)
- Specified by:
withAllin interfaceImmutableDoubleBooleanMapFactory
-
from
public <T> ImmutableDoubleBooleanMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableDoubleBooleanMapFactory
-
-