Interface ImmutableByteIntMapFactory
-
public interface ImmutableByteIntMapFactoryA 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 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 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(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-