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 ImmutableLongFloatMapempty()<T> ImmutableLongFloatMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongFloatMapof()Same asImmutableLongFloatMapFactory.empty().ImmutableLongFloatMapof(long key, float value)ImmutableLongFloatMapofAll(LongFloatMap map)static ImmutableLongFloatMapFactoryImplvalueOf(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.ImmutableLongFloatMapwith()Same asImmutableLongFloatMapFactory.empty().ImmutableLongFloatMapwith(long key, float value)ImmutableLongFloatMapwithAll(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:
emptyin interfaceImmutableLongFloatMapFactory
-
of
Description copied from interface:ImmutableLongFloatMapFactorySame asImmutableLongFloatMapFactory.empty().- Specified by:
ofin interfaceImmutableLongFloatMapFactory
-
with
Description copied from interface:ImmutableLongFloatMapFactorySame asImmutableLongFloatMapFactory.empty().- Specified by:
within interfaceImmutableLongFloatMapFactory
-
of
Description copied from interface:ImmutableLongFloatMapFactory- Specified by:
ofin interfaceImmutableLongFloatMapFactory
-
with
- Specified by:
within interfaceImmutableLongFloatMapFactory
-
ofAll
Description copied from interface:ImmutableLongFloatMapFactory- Specified by:
ofAllin interfaceImmutableLongFloatMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableLongFloatMapFactory
-
from
public <T> ImmutableLongFloatMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Description copied from interface:ImmutableLongFloatMapFactoryCreates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableLongFloatMapFactory
-