Class ImmutableByteDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteDoubleMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteDoubleMapFactory
public class ImmutableByteDoubleMapFactoryImpl extends Object implements ImmutableByteDoubleMapFactory
ImmutableByteDoubleMapFactoryImpl is a factory implementation which creates instances of typeImmutableByteDoubleMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteDoubleMapempty()<T> ImmutableByteDoubleMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)ImmutableByteDoubleMapof()ImmutableByteDoubleMapof(byte key, double value)ImmutableByteDoubleMapofAll(ByteDoubleMap map)ImmutableByteDoubleMapwith()ImmutableByteDoubleMapwith(byte key, double value)ImmutableByteDoubleMapwithAll(ByteDoubleMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteDoubleMap empty()
- Specified by:
emptyin interfaceImmutableByteDoubleMapFactory
-
of
public ImmutableByteDoubleMap of()
- Specified by:
ofin interfaceImmutableByteDoubleMapFactory
-
with
public ImmutableByteDoubleMap with()
- Specified by:
within interfaceImmutableByteDoubleMapFactory
-
of
public ImmutableByteDoubleMap of(byte key, double value)
- Specified by:
ofin interfaceImmutableByteDoubleMapFactory
-
with
public ImmutableByteDoubleMap with(byte key, double value)
- Specified by:
within interfaceImmutableByteDoubleMapFactory
-
ofAll
public ImmutableByteDoubleMap ofAll(ByteDoubleMap map)
- Specified by:
ofAllin interfaceImmutableByteDoubleMapFactory
-
withAll
public ImmutableByteDoubleMap withAll(ByteDoubleMap map)
- Specified by:
withAllin interfaceImmutableByteDoubleMapFactory
-
from
public <T> ImmutableByteDoubleMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableByteDoubleMapFactory
-
-