Interface ImmutableIntByteMapFactory
- All Known Implementing Classes:
ImmutableIntByteMapFactoryImpl
public interface ImmutableIntByteMapFactory
A factory which creates instances of type
ImmutableIntByteMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableIntByteMap
empty()
<T> ImmutableIntByteMap
from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntByteMap
of()
Same asempty()
.ImmutableIntByteMap
of(int key, byte value)
Same aswith(int, byte)
.ImmutableIntByteMap
ofAll(IntByteMap map)
Same aswithAll(IntByteMap)
.ImmutableIntByteMap
with()
Same asempty()
.ImmutableIntByteMap
with(int key, byte value)
ImmutableIntByteMap
withAll(IntByteMap map)
-
Method Details
-
empty
ImmutableIntByteMap empty()- Since:
- 6.0
-
of
ImmutableIntByteMap of()Same asempty()
. -
with
ImmutableIntByteMap with()Same asempty()
. -
of
Same aswith(int, byte)
. -
with
-
ofAll
Same aswithAll(IntByteMap)
. -
withAll
-
from
<T> ImmutableIntByteMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-