Enum ImmutableShortIntMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableShortIntMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableShortIntMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<ImmutableShortIntMapFactoryImpl>,java.lang.constant.Constable,ImmutableShortIntMapFactory
public enum ImmutableShortIntMapFactoryImpl extends Enum<ImmutableShortIntMapFactoryImpl> implements ImmutableShortIntMapFactory
ImmutableShortIntMapFactoryImpl is a factory implementation which creates instances of type
ImmutableShortIntMap.
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 ImmutableShortIntMapempty()<T> ImmutableShortIntMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortIntMapof()Same asImmutableShortIntMapFactory.empty().ImmutableShortIntMapof(short key, int value)ImmutableShortIntMapofAll(ShortIntMap map)static ImmutableShortIntMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static ImmutableShortIntMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.ImmutableShortIntMapwith()Same asImmutableShortIntMapFactory.empty().ImmutableShortIntMapwith(short key, int value)ImmutableShortIntMapwithAll(ShortIntMap 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 interfaceImmutableShortIntMapFactory
-
of
Description copied from interface:ImmutableShortIntMapFactorySame asImmutableShortIntMapFactory.empty().- Specified by:
ofin interfaceImmutableShortIntMapFactory
-
with
Description copied from interface:ImmutableShortIntMapFactorySame asImmutableShortIntMapFactory.empty().- Specified by:
within interfaceImmutableShortIntMapFactory
-
of
Description copied from interface:ImmutableShortIntMapFactory- Specified by:
ofin interfaceImmutableShortIntMapFactory
-
with
- Specified by:
within interfaceImmutableShortIntMapFactory
-
ofAll
Description copied from interface:ImmutableShortIntMapFactory- Specified by:
ofAllin interfaceImmutableShortIntMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableShortIntMapFactory
-
from
public <T> ImmutableShortIntMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Description copied from interface:ImmutableShortIntMapFactoryCreates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableShortIntMapFactory
-