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