Class ImmutableFloatBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableFloatBooleanMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatBooleanMapFactory
public class ImmutableFloatBooleanMapFactoryImpl extends java.lang.Object implements ImmutableFloatBooleanMapFactory
ImmutableFloatBooleanMapFactoryImpl is a factory implementation which creates instances of typeImmutableFloatBooleanMap
. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatBooleanMapFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatBooleanMap
empty()
<T> ImmutableFloatBooleanMap
from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatBooleanMap
of()
ImmutableFloatBooleanMap
of(float key, boolean value)
ImmutableFloatBooleanMap
ofAll(FloatBooleanMap map)
ImmutableFloatBooleanMap
with()
ImmutableFloatBooleanMap
with(float key, boolean value)
ImmutableFloatBooleanMap
withAll(FloatBooleanMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatBooleanMap empty()
- Specified by:
empty
in interfaceImmutableFloatBooleanMapFactory
-
of
public ImmutableFloatBooleanMap of()
Description copied from interface:ImmutableFloatBooleanMapFactory
- Specified by:
of
in interfaceImmutableFloatBooleanMapFactory
-
with
public ImmutableFloatBooleanMap with()
Description copied from interface:ImmutableFloatBooleanMapFactory
- Specified by:
with
in interfaceImmutableFloatBooleanMapFactory
-
of
public ImmutableFloatBooleanMap of(float key, boolean value)
Description copied from interface:ImmutableFloatBooleanMapFactory
- Specified by:
of
in interfaceImmutableFloatBooleanMapFactory
-
with
public ImmutableFloatBooleanMap with(float key, boolean value)
- Specified by:
with
in interfaceImmutableFloatBooleanMapFactory
-
ofAll
public ImmutableFloatBooleanMap ofAll(FloatBooleanMap map)
Description copied from interface:ImmutableFloatBooleanMapFactory
- Specified by:
ofAll
in interfaceImmutableFloatBooleanMapFactory
-
withAll
public ImmutableFloatBooleanMap withAll(FloatBooleanMap map)
- Specified by:
withAll
in interfaceImmutableFloatBooleanMapFactory
-
from
public <T> ImmutableFloatBooleanMap from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Description copied from interface:ImmutableFloatBooleanMapFactory
Creates anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableFloatBooleanMapFactory
-
-