Class ImmutableByteByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteByteMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteByteMapFactory
public class ImmutableByteByteMapFactoryImpl extends Object implements ImmutableByteByteMapFactory
ImmutableByteByteMapFactoryImpl is a factory implementation which creates instances of typeImmutableByteByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteByteMapempty()<T> ImmutableByteByteMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)ImmutableByteByteMapof()ImmutableByteByteMapof(byte key, byte value)ImmutableByteByteMapofAll(ByteByteMap map)ImmutableByteByteMapwith()ImmutableByteByteMapwith(byte key, byte value)ImmutableByteByteMapwithAll(ByteByteMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteByteMap empty()
- Specified by:
emptyin interfaceImmutableByteByteMapFactory
-
of
public ImmutableByteByteMap of()
- Specified by:
ofin interfaceImmutableByteByteMapFactory
-
with
public ImmutableByteByteMap with()
- Specified by:
within interfaceImmutableByteByteMapFactory
-
of
public ImmutableByteByteMap of(byte key, byte value)
- Specified by:
ofin interfaceImmutableByteByteMapFactory
-
with
public ImmutableByteByteMap with(byte key, byte value)
- Specified by:
within interfaceImmutableByteByteMapFactory
-
ofAll
public ImmutableByteByteMap ofAll(ByteByteMap map)
- Specified by:
ofAllin interfaceImmutableByteByteMapFactory
-
withAll
public ImmutableByteByteMap withAll(ByteByteMap map)
- Specified by:
withAllin interfaceImmutableByteByteMapFactory
-
from
public <T> ImmutableByteByteMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableByteByteMapFactory
-
-