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 ImmutableByteLongMapempty()<T> ImmutableByteLongMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableByteLongMapof()Same asImmutableByteLongMapFactory.empty().ImmutableByteLongMapof(byte key, long value)ImmutableByteLongMapofAll(ByteLongMap map)static ImmutableByteLongMapFactoryImplvalueOf(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.ImmutableByteLongMapwith()Same asImmutableByteLongMapFactory.empty().ImmutableByteLongMapwith(byte key, long value)ImmutableByteLongMapwithAll(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:
emptyin interfaceImmutableByteLongMapFactory
-
of
Description copied from interface:ImmutableByteLongMapFactorySame asImmutableByteLongMapFactory.empty().- Specified by:
ofin interfaceImmutableByteLongMapFactory
-
with
Description copied from interface:ImmutableByteLongMapFactorySame asImmutableByteLongMapFactory.empty().- Specified by:
within interfaceImmutableByteLongMapFactory
-
of
Description copied from interface:ImmutableByteLongMapFactory- Specified by:
ofin interfaceImmutableByteLongMapFactory
-
with
- Specified by:
within interfaceImmutableByteLongMapFactory
-
ofAll
Description copied from interface:ImmutableByteLongMapFactory- Specified by:
ofAllin interfaceImmutableByteLongMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableByteLongMapFactory
-
from
public <T> ImmutableByteLongMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Description copied from interface:ImmutableByteLongMapFactoryCreates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableByteLongMapFactory
-