Enum ImmutableCharBooleanMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableCharBooleanMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharBooleanMapFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<ImmutableCharBooleanMapFactoryImpl>
,java.lang.constant.Constable
,ImmutableCharBooleanMapFactory
public enum ImmutableCharBooleanMapFactoryImpl extends Enum<ImmutableCharBooleanMapFactoryImpl> implements ImmutableCharBooleanMapFactory
ImmutableCharBooleanMapFactoryImpl is a factory implementation which creates instances of type
ImmutableCharBooleanMap
.
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 ImmutableCharBooleanMap
empty()
<T> ImmutableCharBooleanMap
from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharBooleanMap
of()
ImmutableCharBooleanMap
of(char key, boolean value)
ImmutableCharBooleanMap
ofAll(CharBooleanMap map)
static ImmutableCharBooleanMapFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImmutableCharBooleanMapFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.ImmutableCharBooleanMap
with()
ImmutableCharBooleanMap
with(char key, boolean value)
ImmutableCharBooleanMap
withAll(CharBooleanMap 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 interfaceImmutableCharBooleanMapFactory
-
of
Description copied from interface:ImmutableCharBooleanMapFactory
- Specified by:
of
in interfaceImmutableCharBooleanMapFactory
-
with
Description copied from interface:ImmutableCharBooleanMapFactory
- Specified by:
with
in interfaceImmutableCharBooleanMapFactory
-
of
Description copied from interface:ImmutableCharBooleanMapFactory
- Specified by:
of
in interfaceImmutableCharBooleanMapFactory
-
with
- Specified by:
with
in interfaceImmutableCharBooleanMapFactory
-
ofAll
Description copied from interface:ImmutableCharBooleanMapFactory
- Specified by:
ofAll
in interfaceImmutableCharBooleanMapFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableCharBooleanMapFactory
-
from
public <T> ImmutableCharBooleanMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Description copied from interface:ImmutableCharBooleanMapFactory
Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableCharBooleanMapFactory
-