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