Class ImmutableFloatCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableFloatCharMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatCharMapFactory
public class ImmutableFloatCharMapFactoryImpl extends java.lang.Object implements ImmutableFloatCharMapFactory
ImmutableFloatCharMapFactoryImpl is a factory implementation which creates instances of typeImmutableFloatCharMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatCharMapempty()<T> ImmutableFloatCharMapfrom(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatCharMapof()Same asImmutableFloatCharMapFactory.empty().ImmutableFloatCharMapof(float key, char value)ImmutableFloatCharMapofAll(FloatCharMap map)ImmutableFloatCharMapwith()Same asImmutableFloatCharMapFactory.empty().ImmutableFloatCharMapwith(float key, char value)ImmutableFloatCharMapwithAll(FloatCharMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatCharMap empty()
- Specified by:
emptyin interfaceImmutableFloatCharMapFactory
-
of
public ImmutableFloatCharMap of()
Description copied from interface:ImmutableFloatCharMapFactorySame asImmutableFloatCharMapFactory.empty().- Specified by:
ofin interfaceImmutableFloatCharMapFactory
-
with
public ImmutableFloatCharMap with()
Description copied from interface:ImmutableFloatCharMapFactorySame asImmutableFloatCharMapFactory.empty().- Specified by:
within interfaceImmutableFloatCharMapFactory
-
of
public ImmutableFloatCharMap of(float key, char value)
Description copied from interface:ImmutableFloatCharMapFactory- Specified by:
ofin interfaceImmutableFloatCharMapFactory
-
with
public ImmutableFloatCharMap with(float key, char value)
- Specified by:
within interfaceImmutableFloatCharMapFactory
-
ofAll
public ImmutableFloatCharMap ofAll(FloatCharMap map)
Description copied from interface:ImmutableFloatCharMapFactory- Specified by:
ofAllin interfaceImmutableFloatCharMapFactory
-
withAll
public ImmutableFloatCharMap withAll(FloatCharMap map)
- Specified by:
withAllin interfaceImmutableFloatCharMapFactory
-
from
public <T> ImmutableFloatCharMap from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Description copied from interface:ImmutableFloatCharMapFactoryCreates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableFloatCharMapFactory
-
-