Interface ImmutableByteIntMapFactory
- All Known Implementing Classes:
ImmutableByteIntMapFactoryImpl
public interface ImmutableByteIntMapFactory
A factory which creates instances of type
ImmutableByteIntMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableByteIntMapempty()<T> ImmutableByteIntMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableByteIntMapof()Same asempty().ImmutableByteIntMapof(byte key, int value)Same aswith(byte, int).ImmutableByteIntMapofAll(ByteIntMap map)Same aswithAll(ByteIntMap).ImmutableByteIntMapwith()Same asempty().ImmutableByteIntMapwith(byte key, int value)ImmutableByteIntMapwithAll(ByteIntMap map)
-
Method Details
-
empty
ImmutableByteIntMap empty()- Since:
- 6.0
-
of
ImmutableByteIntMap of()Same asempty(). -
with
ImmutableByteIntMap with()Same asempty(). -
of
Same aswith(byte, int). -
with
-
ofAll
Same aswithAll(ByteIntMap). -
withAll
-
from
<T> ImmutableByteIntMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-