Class ImmutableDoubleByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableDoubleByteMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleByteMapFactory
public class ImmutableDoubleByteMapFactoryImpl extends Object implements ImmutableDoubleByteMapFactory
ImmutableDoubleByteMapFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleByteMapempty()<T> ImmutableDoubleByteMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)ImmutableDoubleByteMapof()ImmutableDoubleByteMapof(double key, byte value)ImmutableDoubleByteMapofAll(DoubleByteMap map)ImmutableDoubleByteMapwith()ImmutableDoubleByteMapwith(double key, byte value)ImmutableDoubleByteMapwithAll(DoubleByteMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleByteMap empty()
- Specified by:
emptyin interfaceImmutableDoubleByteMapFactory
-
of
public ImmutableDoubleByteMap of()
- Specified by:
ofin interfaceImmutableDoubleByteMapFactory
-
with
public ImmutableDoubleByteMap with()
- Specified by:
within interfaceImmutableDoubleByteMapFactory
-
of
public ImmutableDoubleByteMap of(double key, byte value)
- Specified by:
ofin interfaceImmutableDoubleByteMapFactory
-
with
public ImmutableDoubleByteMap with(double key, byte value)
- Specified by:
within interfaceImmutableDoubleByteMapFactory
-
ofAll
public ImmutableDoubleByteMap ofAll(DoubleByteMap map)
- Specified by:
ofAllin interfaceImmutableDoubleByteMapFactory
-
withAll
public ImmutableDoubleByteMap withAll(DoubleByteMap map)
- Specified by:
withAllin interfaceImmutableDoubleByteMapFactory
-
from
public <T> ImmutableDoubleByteMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableDoubleByteMapFactory
-
-