Enum MutableDoubleByteMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableDoubleByteMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleByteMapFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableDoubleByteMapFactoryImpl>
,java.lang.constant.Constable
,MutableDoubleByteMapFactory
public enum MutableDoubleByteMapFactoryImpl extends Enum<MutableDoubleByteMapFactoryImpl> implements MutableDoubleByteMapFactory
MutableDoubleByteMapFactoryImpl is a factory implementation which creates instances of type
MutableDoubleByteMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description MutableDoubleByteMap
empty()
<T> MutableDoubleByteMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleByteMap
of()
Same asMutableDoubleByteMapFactory.empty()
.MutableDoubleByteMap
ofAll(DoubleByteMap map)
MutableDoubleByteMap
ofInitialCapacity(int capacity)
Same asMutableDoubleByteMapFactory.empty()
.static MutableDoubleByteMapFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static MutableDoubleByteMapFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.MutableDoubleByteMap
with()
Same asMutableDoubleByteMapFactory.empty()
.MutableDoubleByteMap
withAll(DoubleByteMap map)
MutableDoubleByteMap
withInitialCapacity(int capacity)
Same asMutableDoubleByteMapFactory.empty()
.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 interfaceMutableDoubleByteMapFactory
-
of
Description copied from interface:MutableDoubleByteMapFactory
Same asMutableDoubleByteMapFactory.empty()
.- Specified by:
of
in interfaceMutableDoubleByteMapFactory
-
with
Description copied from interface:MutableDoubleByteMapFactory
Same asMutableDoubleByteMapFactory.empty()
.- Specified by:
with
in interfaceMutableDoubleByteMapFactory
-
ofInitialCapacity
Description copied from interface:MutableDoubleByteMapFactory
Same asMutableDoubleByteMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableDoubleByteMapFactory
-
withInitialCapacity
Description copied from interface:MutableDoubleByteMapFactory
Same asMutableDoubleByteMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableDoubleByteMapFactory
-
ofAll
Description copied from interface:MutableDoubleByteMapFactory
- Specified by:
ofAll
in interfaceMutableDoubleByteMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableDoubleByteMapFactory
-
from
public <T> MutableDoubleByteMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Description copied from interface:MutableDoubleByteMapFactory
Creates anMutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableDoubleByteMapFactory
-