Class ImmutableByteLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteLongMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteLongMapFactory
public class ImmutableByteLongMapFactoryImpl extends Object implements ImmutableByteLongMapFactory
ImmutableByteLongMapFactoryImpl is a factory implementation which creates instances of typeImmutableByteLongMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteLongMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteLongMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteLongMapempty()<T> ImmutableByteLongMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)ImmutableByteLongMapof()ImmutableByteLongMapof(byte key, long value)ImmutableByteLongMapofAll(ByteLongMap map)ImmutableByteLongMapwith()ImmutableByteLongMapwith(byte key, long value)ImmutableByteLongMapwithAll(ByteLongMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteLongMap empty()
- Specified by:
emptyin interfaceImmutableByteLongMapFactory
-
of
public ImmutableByteLongMap of()
- Specified by:
ofin interfaceImmutableByteLongMapFactory
-
with
public ImmutableByteLongMap with()
- Specified by:
within interfaceImmutableByteLongMapFactory
-
of
public ImmutableByteLongMap of(byte key, long value)
- Specified by:
ofin interfaceImmutableByteLongMapFactory
-
with
public ImmutableByteLongMap with(byte key, long value)
- Specified by:
within interfaceImmutableByteLongMapFactory
-
ofAll
public ImmutableByteLongMap ofAll(ByteLongMap map)
- Specified by:
ofAllin interfaceImmutableByteLongMapFactory
-
withAll
public ImmutableByteLongMap withAll(ByteLongMap map)
- Specified by:
withAllin interfaceImmutableByteLongMapFactory
-
from
public <T> ImmutableByteLongMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableByteLongMapFactory
-
-