Class ImmutableLongByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongByteMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableLongByteMapFactory
public class ImmutableLongByteMapFactoryImpl extends java.lang.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 ImmutableLongByteMapFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableLongByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableLongByteMap
empty()
<T> ImmutableLongByteMap
from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongByteMap
of()
Same asImmutableLongByteMapFactory.empty()
.ImmutableLongByteMap
of(long key, byte value)
ImmutableLongByteMap
ofAll(LongByteMap map)
ImmutableLongByteMap
with()
Same asImmutableLongByteMapFactory.empty()
.ImmutableLongByteMap
with(long key, byte value)
ImmutableLongByteMap
withAll(LongByteMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableLongByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableLongByteMap empty()
- Specified by:
empty
in interfaceImmutableLongByteMapFactory
-
of
public ImmutableLongByteMap of()
Description copied from interface:ImmutableLongByteMapFactory
Same asImmutableLongByteMapFactory.empty()
.- Specified by:
of
in interfaceImmutableLongByteMapFactory
-
with
public ImmutableLongByteMap with()
Description copied from interface:ImmutableLongByteMapFactory
Same asImmutableLongByteMapFactory.empty()
.- Specified by:
with
in interfaceImmutableLongByteMapFactory
-
of
public ImmutableLongByteMap of(long key, byte value)
Description copied from interface:ImmutableLongByteMapFactory
- Specified by:
of
in interfaceImmutableLongByteMapFactory
-
with
public ImmutableLongByteMap with(long key, byte value)
- Specified by:
with
in interfaceImmutableLongByteMapFactory
-
ofAll
public ImmutableLongByteMap ofAll(LongByteMap map)
Description copied from interface:ImmutableLongByteMapFactory
- Specified by:
ofAll
in interfaceImmutableLongByteMapFactory
-
withAll
public ImmutableLongByteMap withAll(LongByteMap map)
- Specified by:
withAll
in interfaceImmutableLongByteMapFactory
-
from
public <T> ImmutableLongByteMap from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Description copied from interface:ImmutableLongByteMapFactory
Creates anImmutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceImmutableLongByteMapFactory
-
-