Enum ImmutableByteLongMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableByteLongMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteLongMapFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<ImmutableByteLongMapFactoryImpl>
,java.lang.constant.Constable
,ImmutableByteLongMapFactory
public enum ImmutableByteLongMapFactoryImpl extends Enum<ImmutableByteLongMapFactoryImpl> implements ImmutableByteLongMapFactory
ImmutableByteLongMapFactoryImpl is a factory implementation which creates instances of type
ImmutableByteLongMap
.
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 ImmutableByteLongMap
empty()
<T> ImmutableByteLongMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteLongMap
of()
Same asImmutableByteLongMapFactory.empty()
.ImmutableByteLongMap
of(byte key, long value)
ImmutableByteLongMap
ofAll(ByteLongMap map)
static ImmutableByteLongMapFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImmutableByteLongMapFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.ImmutableByteLongMap
with()
Same asImmutableByteLongMapFactory.empty()
.ImmutableByteLongMap
with(byte key, long value)
ImmutableByteLongMap
withAll(ByteLongMap 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 interfaceImmutableByteLongMapFactory
-
of
Description copied from interface:ImmutableByteLongMapFactory
Same asImmutableByteLongMapFactory.empty()
.- Specified by:
of
in interfaceImmutableByteLongMapFactory
-
with
Description copied from interface:ImmutableByteLongMapFactory
Same asImmutableByteLongMapFactory.empty()
.- Specified by:
with
in interfaceImmutableByteLongMapFactory
-
of
Description copied from interface:ImmutableByteLongMapFactory
- Specified by:
of
in interfaceImmutableByteLongMapFactory
-
with
- Specified by:
with
in interfaceImmutableByteLongMapFactory
-
ofAll
Description copied from interface:ImmutableByteLongMapFactory
- Specified by:
ofAll
in interfaceImmutableByteLongMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableByteLongMapFactory
-
from
public <T> ImmutableByteLongMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Description copied from interface:ImmutableByteLongMapFactory
Creates anImmutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableByteLongMapFactory
-