Class ImmutableFloatByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableFloatByteMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatByteMapFactory
public class ImmutableFloatByteMapFactoryImpl extends Object implements ImmutableFloatByteMapFactory
ImmutableFloatByteMapFactoryImpl is a factory implementation which creates instances of typeImmutableFloatByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatByteMapempty()<T> ImmutableFloatByteMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)ImmutableFloatByteMapof()ImmutableFloatByteMapof(float key, byte value)ImmutableFloatByteMapofAll(FloatByteMap map)ImmutableFloatByteMapwith()ImmutableFloatByteMapwith(float key, byte value)ImmutableFloatByteMapwithAll(FloatByteMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatByteMap empty()
- Specified by:
emptyin interfaceImmutableFloatByteMapFactory
-
of
public ImmutableFloatByteMap of()
- Specified by:
ofin interfaceImmutableFloatByteMapFactory
-
with
public ImmutableFloatByteMap with()
- Specified by:
within interfaceImmutableFloatByteMapFactory
-
of
public ImmutableFloatByteMap of(float key, byte value)
- Specified by:
ofin interfaceImmutableFloatByteMapFactory
-
with
public ImmutableFloatByteMap with(float key, byte value)
- Specified by:
within interfaceImmutableFloatByteMapFactory
-
ofAll
public ImmutableFloatByteMap ofAll(FloatByteMap map)
- Specified by:
ofAllin interfaceImmutableFloatByteMapFactory
-
withAll
public ImmutableFloatByteMap withAll(FloatByteMap map)
- Specified by:
withAllin interfaceImmutableFloatByteMapFactory
-
from
public <T> ImmutableFloatByteMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableFloatByteMapFactory
-
-