Enum ImmutableIntDoubleMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableIntDoubleMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntDoubleMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<ImmutableIntDoubleMapFactoryImpl>,java.lang.constant.Constable,ImmutableIntDoubleMapFactory
public enum ImmutableIntDoubleMapFactoryImpl extends Enum<ImmutableIntDoubleMapFactoryImpl> implements ImmutableIntDoubleMapFactory
ImmutableIntDoubleMapFactoryImpl is a factory implementation which creates instances of type
ImmutableIntDoubleMap.
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 ImmutableIntDoubleMapempty()<T> ImmutableIntDoubleMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntDoubleMapof()Same asImmutableIntDoubleMapFactory.empty().ImmutableIntDoubleMapof(int key, double value)ImmutableIntDoubleMapofAll(IntDoubleMap map)static ImmutableIntDoubleMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static ImmutableIntDoubleMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.ImmutableIntDoubleMapwith()Same asImmutableIntDoubleMapFactory.empty().ImmutableIntDoubleMapwith(int key, double value)ImmutableIntDoubleMapwithAll(IntDoubleMap 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 interfaceImmutableIntDoubleMapFactory
-
of
Description copied from interface:ImmutableIntDoubleMapFactorySame asImmutableIntDoubleMapFactory.empty().- Specified by:
ofin interfaceImmutableIntDoubleMapFactory
-
with
Description copied from interface:ImmutableIntDoubleMapFactorySame asImmutableIntDoubleMapFactory.empty().- Specified by:
within interfaceImmutableIntDoubleMapFactory
-
of
Description copied from interface:ImmutableIntDoubleMapFactory- Specified by:
ofin interfaceImmutableIntDoubleMapFactory
-
with
- Specified by:
within interfaceImmutableIntDoubleMapFactory
-
ofAll
Description copied from interface:ImmutableIntDoubleMapFactory- Specified by:
ofAllin interfaceImmutableIntDoubleMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableIntDoubleMapFactory
-
from
public <T> ImmutableIntDoubleMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Description copied from interface:ImmutableIntDoubleMapFactoryCreates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableIntDoubleMapFactory
-