Enum ImmutableObjectByteMapFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableObjectByteMapFactoryImpl>
org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectByteMapFactoryImpl
- All Implemented Interfaces:
Serializable,Comparable<ImmutableObjectByteMapFactoryImpl>,java.lang.constant.Constable,ImmutableObjectByteMapFactory
public enum ImmutableObjectByteMapFactoryImpl extends Enum<ImmutableObjectByteMapFactoryImpl> implements ImmutableObjectByteMapFactory
ImmutableObjectByteMapFactoryImpl is a factory implementation which creates instances of type
ImmutableObjectByteMap.
This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE -
Method Summary
Modifier and Type Method Description <K> ImmutableObjectByteMap<K>empty()<T, K> ImmutableObjectByteMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableObjectByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> ImmutableObjectByteMap<K>of()<K> ImmutableObjectByteMap<K>of(K key, byte value)<K> ImmutableObjectByteMap<K>ofAll(ObjectByteMap<? extends K> map)static ImmutableObjectByteMapFactoryImplvalueOf(String name)Returns the enum constant of this type with the specified name.static ImmutableObjectByteMapFactoryImpl[]values()Returns an array containing the constants of this enum type, in the order they are declared.<K> ImmutableObjectByteMap<K>with()<K> ImmutableObjectByteMap<K>with(K key, byte value)<K> ImmutableObjectByteMap<K>withAll(ObjectByteMap<? extends K> 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 interfaceImmutableObjectByteMapFactory
-
of
Description copied from interface:ImmutableObjectByteMapFactory- Specified by:
ofin interfaceImmutableObjectByteMapFactory
-
with
Description copied from interface:ImmutableObjectByteMapFactory- Specified by:
within interfaceImmutableObjectByteMapFactory
-
of
Description copied from interface:ImmutableObjectByteMapFactory- Specified by:
ofin interfaceImmutableObjectByteMapFactory
-
with
- Specified by:
within interfaceImmutableObjectByteMapFactory
-
ofAll
Description copied from interface:ImmutableObjectByteMapFactory- Specified by:
ofAllin interfaceImmutableObjectByteMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableObjectByteMapFactory
-
from
public <T, K> ImmutableObjectByteMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)Description copied from interface:ImmutableObjectByteMapFactoryCreates anImmutableObjectByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableObjectByteMapFactory
-