Class ImmutableLongByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongByteMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableLongByteMapFactory
public class ImmutableLongByteMapFactoryImpl extends Object implements ImmutableLongByteMapFactory
ImmutableLongByteMapFactoryImpl is a factory implementation which creates instances of typeImmutableLongByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableLongByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableLongByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableLongByteMapempty()<T> ImmutableLongByteMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)ImmutableLongByteMapof()ImmutableLongByteMapof(long key, byte value)ImmutableLongByteMapofAll(LongByteMap map)ImmutableLongByteMapwith()ImmutableLongByteMapwith(long key, byte value)ImmutableLongByteMapwithAll(LongByteMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableLongByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableLongByteMap empty()
- Specified by:
emptyin interfaceImmutableLongByteMapFactory
-
of
public ImmutableLongByteMap of()
- Specified by:
ofin interfaceImmutableLongByteMapFactory
-
with
public ImmutableLongByteMap with()
- Specified by:
within interfaceImmutableLongByteMapFactory
-
of
public ImmutableLongByteMap of(long key, byte value)
- Specified by:
ofin interfaceImmutableLongByteMapFactory
-
with
public ImmutableLongByteMap with(long key, byte value)
- Specified by:
within interfaceImmutableLongByteMapFactory
-
ofAll
public ImmutableLongByteMap ofAll(LongByteMap map)
- Specified by:
ofAllin interfaceImmutableLongByteMapFactory
-
withAll
public ImmutableLongByteMap withAll(LongByteMap map)
- Specified by:
withAllin interfaceImmutableLongByteMapFactory
-
from
public <T> ImmutableLongByteMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableLongByteMapFactory
-
-