Interface ImmutableShortShortMapFactory
-
public interface ImmutableShortShortMapFactoryA factory which creates instances of typeImmutableShortShortMap. 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 ImmutableShortShortMapempty()<T> ImmutableShortShortMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableShortShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortShortMapof()Same asempty().ImmutableShortShortMapof(short key, short value)Same aswith(short, short).ImmutableShortShortMapofAll(ShortShortMap map)Same aswithAll(ShortShortMap).ImmutableShortShortMapwith()Same asempty().ImmutableShortShortMapwith(short key, short value)ImmutableShortShortMapwithAll(ShortShortMap map)
-
-
-
Method Detail
-
empty
ImmutableShortShortMap empty()
- Since:
- 6.0
-
of
ImmutableShortShortMap of()
Same asempty().
-
with
ImmutableShortShortMap with()
Same asempty().
-
of
ImmutableShortShortMap of(short key, short value)
Same aswith(short, short).
-
with
ImmutableShortShortMap with(short key, short value)
-
ofAll
ImmutableShortShortMap ofAll(ShortShortMap map)
Same aswithAll(ShortShortMap).
-
withAll
ImmutableShortShortMap withAll(ShortShortMap map)
-
from
<T> ImmutableShortShortMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableShortShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-