Enum ImmutableLongFloatMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableLongFloatMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongFloatMapFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<ImmutableLongFloatMapFactoryImpl>
,java.lang.constant.Constable
,ImmutableLongFloatMapFactory
public enum ImmutableLongFloatMapFactoryImpl extends Enum<ImmutableLongFloatMapFactoryImpl> implements ImmutableLongFloatMapFactory
ImmutableLongFloatMapFactoryImpl is a factory implementation which creates instances of type
ImmutableLongFloatMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description ImmutableLongFloatMap
empty()
<T> ImmutableLongFloatMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongFloatMap
of()
Same asImmutableLongFloatMapFactory.empty()
.ImmutableLongFloatMap
of(long key, float value)
ImmutableLongFloatMap
ofAll(LongFloatMap map)
static ImmutableLongFloatMapFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImmutableLongFloatMapFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.ImmutableLongFloatMap
with()
Same asImmutableLongFloatMapFactory.empty()
.ImmutableLongFloatMap
with(long key, float value)
ImmutableLongFloatMap
withAll(LongFloatMap map)
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
empty
- Specified by:
empty
in interfaceImmutableLongFloatMapFactory
-
of
Description copied from interface:ImmutableLongFloatMapFactory
Same asImmutableLongFloatMapFactory.empty()
.- Specified by:
of
in interfaceImmutableLongFloatMapFactory
-
with
Description copied from interface:ImmutableLongFloatMapFactory
Same asImmutableLongFloatMapFactory.empty()
.- Specified by:
with
in interfaceImmutableLongFloatMapFactory
-
of
Description copied from interface:ImmutableLongFloatMapFactory
- Specified by:
of
in interfaceImmutableLongFloatMapFactory
-
with
- Specified by:
with
in interfaceImmutableLongFloatMapFactory
-
ofAll
Description copied from interface:ImmutableLongFloatMapFactory
- Specified by:
ofAll
in interfaceImmutableLongFloatMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableLongFloatMapFactory
-
from
public <T> ImmutableLongFloatMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Description copied from interface:ImmutableLongFloatMapFactory
Creates anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableLongFloatMapFactory
-