Interface ImmutableShortByteMapFactory
-
public interface ImmutableShortByteMapFactoryA factory which creates instances of typeImmutableShortByteMap. 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 ImmutableShortByteMapempty()<T> ImmutableShortByteMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortByteMapof()Same asempty().ImmutableShortByteMapof(short key, byte value)Same aswith(short, byte).ImmutableShortByteMapofAll(ShortByteMap map)Same aswithAll(ShortByteMap).ImmutableShortByteMapwith()Same asempty().ImmutableShortByteMapwith(short key, byte value)ImmutableShortByteMapwithAll(ShortByteMap map)
-
-
-
Method Detail
-
empty
ImmutableShortByteMap empty()
- Since:
- 6.0
-
of
ImmutableShortByteMap of()
Same asempty().
-
with
ImmutableShortByteMap with()
Same asempty().
-
of
ImmutableShortByteMap of(short key, byte value)
Same aswith(short, byte).
-
with
ImmutableShortByteMap with(short key, byte value)
-
ofAll
ImmutableShortByteMap ofAll(ShortByteMap map)
Same aswithAll(ShortByteMap).
-
withAll
ImmutableShortByteMap withAll(ShortByteMap map)
-
from
<T> ImmutableShortByteMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-