Enum ImmutableObjectLongMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableObjectLongMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectLongMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<ImmutableObjectLongMapFactoryImpl>,java.lang.constant.Constable,ImmutableObjectLongMapFactory
public enum ImmutableObjectLongMapFactoryImpl extends Enum<ImmutableObjectLongMapFactoryImpl> implements ImmutableObjectLongMapFactory
ImmutableObjectLongMapFactoryImpl is a factory implementation which creates instances of type
ImmutableObjectLongMap.
This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE -
Method Summary
Modifier and Type Method Description <K> ImmutableObjectLongMap<K>empty()<T, K> ImmutableObjectLongMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> ImmutableObjectLongMap<K>of()<K> ImmutableObjectLongMap<K>of(K key, long value)<K> ImmutableObjectLongMap<K>ofAll(ObjectLongMap<? extends K> map)static ImmutableObjectLongMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static ImmutableObjectLongMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.<K> ImmutableObjectLongMap<K>with()<K> ImmutableObjectLongMap<K>with(K key, long value)<K> ImmutableObjectLongMap<K>withAll(ObjectLongMap<? extends K> 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 interfaceImmutableObjectLongMapFactory
-
of
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
ofin interfaceImmutableObjectLongMapFactory
-
with
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
within interfaceImmutableObjectLongMapFactory
-
of
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
ofin interfaceImmutableObjectLongMapFactory
-
with
- Specified by:
within interfaceImmutableObjectLongMapFactory
-
ofAll
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
ofAllin interfaceImmutableObjectLongMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableObjectLongMapFactory
-
from
public <T, K> ImmutableObjectLongMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, LongFunction<? super T> valueFunction)Description copied from interface:ImmutableObjectLongMapFactoryCreates anImmutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableObjectLongMapFactory
-