Enum ImmutableIntCharMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableIntCharMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntCharMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<ImmutableIntCharMapFactoryImpl>,java.lang.constant.Constable,ImmutableIntCharMapFactory
public enum ImmutableIntCharMapFactoryImpl extends Enum<ImmutableIntCharMapFactoryImpl> implements ImmutableIntCharMapFactory
ImmutableIntCharMapFactoryImpl is a factory implementation which creates instances of type
ImmutableIntCharMap.
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 ImmutableIntCharMapempty()<T> ImmutableIntCharMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntCharMapof()Same asImmutableIntCharMapFactory.empty().ImmutableIntCharMapof(int key, char value)ImmutableIntCharMapofAll(IntCharMap map)static ImmutableIntCharMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static ImmutableIntCharMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.ImmutableIntCharMapwith()Same asImmutableIntCharMapFactory.empty().ImmutableIntCharMapwith(int key, char value)ImmutableIntCharMapwithAll(IntCharMap 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 interfaceImmutableIntCharMapFactory
-
of
Description copied from interface:ImmutableIntCharMapFactorySame asImmutableIntCharMapFactory.empty().- Specified by:
ofin interfaceImmutableIntCharMapFactory
-
with
Description copied from interface:ImmutableIntCharMapFactorySame asImmutableIntCharMapFactory.empty().- Specified by:
within interfaceImmutableIntCharMapFactory
-
of
Description copied from interface:ImmutableIntCharMapFactory- Specified by:
ofin interfaceImmutableIntCharMapFactory
-
with
- Specified by:
within interfaceImmutableIntCharMapFactory
-
ofAll
Description copied from interface:ImmutableIntCharMapFactory- Specified by:
ofAllin interfaceImmutableIntCharMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableIntCharMapFactory
-
from
public <T> ImmutableIntCharMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Description copied from interface:ImmutableIntCharMapFactoryCreates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableIntCharMapFactory
-