Class ImmutableByteFloatMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteFloatMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteFloatMapFactory
public class ImmutableByteFloatMapFactoryImpl extends Object implements ImmutableByteFloatMapFactory
ImmutableByteFloatMapFactoryImpl is a factory implementation which creates instances of typeImmutableByteFloatMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteFloatMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteFloatMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteFloatMapempty()<T> ImmutableByteFloatMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)ImmutableByteFloatMapof()ImmutableByteFloatMapof(byte key, float value)ImmutableByteFloatMapofAll(ByteFloatMap map)ImmutableByteFloatMapwith()ImmutableByteFloatMapwith(byte key, float value)ImmutableByteFloatMapwithAll(ByteFloatMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteFloatMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteFloatMap empty()
- Specified by:
emptyin interfaceImmutableByteFloatMapFactory
-
of
public ImmutableByteFloatMap of()
- Specified by:
ofin interfaceImmutableByteFloatMapFactory
-
with
public ImmutableByteFloatMap with()
- Specified by:
within interfaceImmutableByteFloatMapFactory
-
of
public ImmutableByteFloatMap of(byte key, float value)
- Specified by:
ofin interfaceImmutableByteFloatMapFactory
-
with
public ImmutableByteFloatMap with(byte key, float value)
- Specified by:
within interfaceImmutableByteFloatMapFactory
-
ofAll
public ImmutableByteFloatMap ofAll(ByteFloatMap map)
- Specified by:
ofAllin interfaceImmutableByteFloatMapFactory
-
withAll
public ImmutableByteFloatMap withAll(ByteFloatMap map)
- Specified by:
withAllin interfaceImmutableByteFloatMapFactory
-
from
public <T> ImmutableByteFloatMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableByteFloatMapFactory
-
-