Interface ImmutableByteIntMapFactory
-
- All Known Implementing Classes:
ImmutableByteIntMapFactoryImpl
public interface ImmutableByteIntMapFactory
A factory which creates instances of typeImmutableByteIntMap
. 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 ImmutableByteIntMap
empty()
<T> ImmutableByteIntMap
from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteIntMap
of()
Same asempty()
.ImmutableByteIntMap
of(byte key, int value)
Same aswith(byte, int)
.ImmutableByteIntMap
ofAll(ByteIntMap map)
Same aswithAll(ByteIntMap)
.ImmutableByteIntMap
with()
Same asempty()
.ImmutableByteIntMap
with(byte key, int value)
ImmutableByteIntMap
withAll(ByteIntMap map)
-
-
-
Method Detail
-
empty
ImmutableByteIntMap empty()
- Since:
- 6.0
-
of
ImmutableByteIntMap of()
Same asempty()
.
-
with
ImmutableByteIntMap with()
Same asempty()
.
-
of
ImmutableByteIntMap of(byte key, int value)
Same aswith(byte, int)
.
-
with
ImmutableByteIntMap with(byte key, int value)
-
ofAll
ImmutableByteIntMap ofAll(ByteIntMap map)
Same aswithAll(ByteIntMap)
.
-
withAll
ImmutableByteIntMap withAll(ByteIntMap map)
-
from
<T> ImmutableByteIntMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-