Enum MutableByteIntMapFactoryImpl
java.lang.Object
java.lang.Enum<MutableByteIntMapFactoryImpl>
org.eclipse.collections.impl.map.mutable.primitive.MutableByteIntMapFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<MutableByteIntMapFactoryImpl>
,java.lang.constant.Constable
,MutableByteIntMapFactory
public enum MutableByteIntMapFactoryImpl
extends Enum<MutableByteIntMapFactoryImpl>
implements MutableByteIntMapFactory
MutableByteIntMapFactoryImpl is a factory implementation which creates instances of type
MutableByteIntMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionempty()
from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asMutableByteIntMapFactory.empty()
.ofAll
(ByteIntMap map) ofInitialCapacity
(int capacity) Same asMutableByteIntMapFactory.empty()
.static MutableByteIntMapFactoryImpl
Returns the enum constant of this type with the specified name.static MutableByteIntMapFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.with()
Same asMutableByteIntMapFactory.empty()
.withAll
(ByteIntMap map) withInitialCapacity
(int capacity) Same asMutableByteIntMapFactory.empty()
.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INSTANCE
-
-
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 interfaceMutableByteIntMapFactory
-
of
Description copied from interface:MutableByteIntMapFactory
Same asMutableByteIntMapFactory.empty()
.- Specified by:
of
in interfaceMutableByteIntMapFactory
-
with
Description copied from interface:MutableByteIntMapFactory
Same asMutableByteIntMapFactory.empty()
.- Specified by:
with
in interfaceMutableByteIntMapFactory
-
ofInitialCapacity
Description copied from interface:MutableByteIntMapFactory
Same asMutableByteIntMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableByteIntMapFactory
-
withInitialCapacity
Description copied from interface:MutableByteIntMapFactory
Same asMutableByteIntMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableByteIntMapFactory
-
ofAll
Description copied from interface:MutableByteIntMapFactory
- Specified by:
ofAll
in interfaceMutableByteIntMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableByteIntMapFactory
-
from
public <T> MutableByteIntMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Description copied from interface:MutableByteIntMapFactory
Creates anMutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableByteIntMapFactory
-