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 ImmutableCharBooleanMapempty()<T> ImmutableCharBooleanMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharBooleanMapof()ImmutableCharBooleanMapof(char key, boolean value)ImmutableCharBooleanMapofAll(CharBooleanMap map)static ImmutableCharBooleanMapFactoryImplvalueOf(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.ImmutableCharBooleanMapwith()ImmutableCharBooleanMapwith(char key, boolean value)ImmutableCharBooleanMapwithAll(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:
emptyin interfaceImmutableCharBooleanMapFactory
-
of
Description copied from interface:ImmutableCharBooleanMapFactory- Specified by:
ofin interfaceImmutableCharBooleanMapFactory
-
with
Description copied from interface:ImmutableCharBooleanMapFactory- Specified by:
within interfaceImmutableCharBooleanMapFactory
-
of
Description copied from interface:ImmutableCharBooleanMapFactory- Specified by:
ofin interfaceImmutableCharBooleanMapFactory
-
with
- Specified by:
within interfaceImmutableCharBooleanMapFactory
-
ofAll
Description copied from interface:ImmutableCharBooleanMapFactory- Specified by:
ofAllin interfaceImmutableCharBooleanMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableCharBooleanMapFactory
-
from
public <T> ImmutableCharBooleanMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Description copied from interface:ImmutableCharBooleanMapFactoryCreates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableCharBooleanMapFactory
-