Enum ImmutableLongObjectMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableLongObjectMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongObjectMapFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<ImmutableLongObjectMapFactoryImpl>
,java.lang.constant.Constable
,ImmutableLongObjectMapFactory
public enum ImmutableLongObjectMapFactoryImpl extends Enum<ImmutableLongObjectMapFactoryImpl> implements ImmutableLongObjectMapFactory
ImmutableLongObjectMapFactoryImpl is a factory implementation which creates instances of type
ImmutableLongObjectMap
.
This file was automatically generated from template file immutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 4.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description <V> ImmutableLongObjectMap<V>
empty()
<T, V> ImmutableLongObjectMap<V>
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableLongObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> ImmutableLongObjectMap<V>
of()
<V> ImmutableLongObjectMap<V>
of(long key, V value)
<V> ImmutableLongObjectMap<V>
ofAll(LongObjectMap<? extends V> map)
static ImmutableLongObjectMapFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImmutableLongObjectMapFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.<V> ImmutableLongObjectMap<V>
with()
<V> ImmutableLongObjectMap<V>
with(long key, V value)
<V> ImmutableLongObjectMap<V>
withAll(LongObjectMap<? extends V> 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 interfaceImmutableLongObjectMapFactory
-
of
Description copied from interface:ImmutableLongObjectMapFactory
- Specified by:
of
in interfaceImmutableLongObjectMapFactory
-
with
Description copied from interface:ImmutableLongObjectMapFactory
- Specified by:
with
in interfaceImmutableLongObjectMapFactory
-
of
Description copied from interface:ImmutableLongObjectMapFactory
- Specified by:
of
in interfaceImmutableLongObjectMapFactory
-
with
- Specified by:
with
in interfaceImmutableLongObjectMapFactory
-
ofAll
Description copied from interface:ImmutableLongObjectMapFactory
- Specified by:
ofAll
in interfaceImmutableLongObjectMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableLongObjectMapFactory
-
from
public <T, V> ImmutableLongObjectMap<V> from(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Description copied from interface:ImmutableLongObjectMapFactory
Creates anImmutableLongObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableLongObjectMapFactory
-