Class ImmutableIntByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntByteMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableIntByteMapFactory
public class ImmutableIntByteMapFactoryImpl extends Object implements ImmutableIntByteMapFactory
ImmutableIntByteMapFactoryImpl is a factory implementation which creates instances of typeImmutableIntByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableIntByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableIntByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableIntByteMapempty()<T> ImmutableIntByteMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)ImmutableIntByteMapof()ImmutableIntByteMapof(int key, byte value)ImmutableIntByteMapofAll(IntByteMap map)ImmutableIntByteMapwith()ImmutableIntByteMapwith(int key, byte value)ImmutableIntByteMapwithAll(IntByteMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableIntByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableIntByteMap empty()
- Specified by:
emptyin interfaceImmutableIntByteMapFactory
-
of
public ImmutableIntByteMap of()
- Specified by:
ofin interfaceImmutableIntByteMapFactory
-
with
public ImmutableIntByteMap with()
- Specified by:
within interfaceImmutableIntByteMapFactory
-
of
public ImmutableIntByteMap of(int key, byte value)
- Specified by:
ofin interfaceImmutableIntByteMapFactory
-
with
public ImmutableIntByteMap with(int key, byte value)
- Specified by:
within interfaceImmutableIntByteMapFactory
-
ofAll
public ImmutableIntByteMap ofAll(IntByteMap map)
- Specified by:
ofAllin interfaceImmutableIntByteMapFactory
-
withAll
public ImmutableIntByteMap withAll(IntByteMap map)
- Specified by:
withAllin interfaceImmutableIntByteMapFactory
-
from
public <T> ImmutableIntByteMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableIntByteMapFactory
-
-