Interface ImmutableByteShortMapFactory
-
public interface ImmutableByteShortMapFactoryA factory which creates instances of typeImmutableByteShortMap. 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 ImmutableByteShortMapempty()<T> ImmutableByteShortMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableByteShortMapof()Same asempty().ImmutableByteShortMapof(byte key, short value)Same aswith(byte, short).ImmutableByteShortMapofAll(ByteShortMap map)Same aswithAll(ByteShortMap).ImmutableByteShortMapwith()Same asempty().ImmutableByteShortMapwith(byte key, short value)ImmutableByteShortMapwithAll(ByteShortMap map)
-
-
-
Method Detail
-
empty
ImmutableByteShortMap empty()
- Since:
- 6.0
-
of
ImmutableByteShortMap of()
Same asempty().
-
with
ImmutableByteShortMap with()
Same asempty().
-
of
ImmutableByteShortMap of(byte key, short value)
Same aswith(byte, short).
-
with
ImmutableByteShortMap with(byte key, short value)
-
ofAll
ImmutableByteShortMap ofAll(ByteShortMap map)
Same aswithAll(ByteShortMap).
-
withAll
ImmutableByteShortMap withAll(ByteShortMap map)
-
from
<T> ImmutableByteShortMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-