Enum ImmutableCharObjectMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableCharObjectMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharObjectMapFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<ImmutableCharObjectMapFactoryImpl>
,java.lang.constant.Constable
,ImmutableCharObjectMapFactory
public enum ImmutableCharObjectMapFactoryImpl
extends Enum<ImmutableCharObjectMapFactoryImpl>
implements ImmutableCharObjectMapFactory
ImmutableCharObjectMapFactoryImpl is a factory implementation which creates instances of type
ImmutableCharObjectMap
.
This file was automatically generated from template file immutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 4.0.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescription<V> ImmutableCharObjectMap<V>
empty()
<T,
V> ImmutableCharObjectMap<V> from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> ImmutableCharObjectMap<V>
of()
<V> ImmutableCharObjectMap<V>
of
(char key, V value) <V> ImmutableCharObjectMap<V>
ofAll
(CharObjectMap<? extends V> map) Returns the enum constant of this type with the specified name.static ImmutableCharObjectMapFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.<V> ImmutableCharObjectMap<V>
with()
<V> ImmutableCharObjectMap<V>
with
(char key, V value) <V> ImmutableCharObjectMap<V>
withAll
(CharObjectMap<? extends V> map) Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INSTANCE
-
-
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 interfaceImmutableCharObjectMapFactory
-
of
Description copied from interface:ImmutableCharObjectMapFactory
- Specified by:
of
in interfaceImmutableCharObjectMapFactory
-
with
Description copied from interface:ImmutableCharObjectMapFactory
- Specified by:
with
in interfaceImmutableCharObjectMapFactory
-
of
Description copied from interface:ImmutableCharObjectMapFactory
- Specified by:
of
in interfaceImmutableCharObjectMapFactory
-
with
- Specified by:
with
in interfaceImmutableCharObjectMapFactory
-
ofAll
Description copied from interface:ImmutableCharObjectMapFactory
- Specified by:
ofAll
in interfaceImmutableCharObjectMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableCharObjectMapFactory
-
from
public <T,V> ImmutableCharObjectMap<V> from(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Description copied from interface:ImmutableCharObjectMapFactory
Creates anImmutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableCharObjectMapFactory
-