Class ImmutableByteObjectMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteObjectMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteObjectMapFactory
public class ImmutableByteObjectMapFactoryImpl extends Object implements ImmutableByteObjectMapFactory
ImmutableByteObjectMapFactoryImpl is a factory implementation which creates instances of typeImmutableByteObjectMap. This file was automatically generated from template file immutablePrimitiveObjectMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteObjectMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteObjectMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V> ImmutableByteObjectMap<V>empty()<T,V>
ImmutableByteObjectMap<V>from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<V> ImmutableByteObjectMap<V>of()<V> ImmutableByteObjectMap<V>of(byte key, V value)<V> ImmutableByteObjectMap<V>ofAll(ByteObjectMap<? extends V> map)<V> ImmutableByteObjectMap<V>with()<V> ImmutableByteObjectMap<V>with(byte key, V value)<V> ImmutableByteObjectMap<V>withAll(ByteObjectMap<? extends V> map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteObjectMapFactory INSTANCE
-
-
Method Detail
-
empty
public <V> ImmutableByteObjectMap<V> empty()
- Specified by:
emptyin interfaceImmutableByteObjectMapFactory
-
of
public <V> ImmutableByteObjectMap<V> of()
- Specified by:
ofin interfaceImmutableByteObjectMapFactory
-
with
public <V> ImmutableByteObjectMap<V> with()
- Specified by:
within interfaceImmutableByteObjectMapFactory
-
of
public <V> ImmutableByteObjectMap<V> of(byte key, V value)
- Specified by:
ofin interfaceImmutableByteObjectMapFactory
-
with
public <V> ImmutableByteObjectMap<V> with(byte key, V value)
- Specified by:
within interfaceImmutableByteObjectMapFactory
-
ofAll
public <V> ImmutableByteObjectMap<V> ofAll(ByteObjectMap<? extends V> map)
- Specified by:
ofAllin interfaceImmutableByteObjectMapFactory
-
withAll
public <V> ImmutableByteObjectMap<V> withAll(ByteObjectMap<? extends V> map)
- Specified by:
withAllin interfaceImmutableByteObjectMapFactory
-
from
public <T,V> ImmutableByteObjectMap<V> from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
- Specified by:
fromin interfaceImmutableByteObjectMapFactory
-
-