Interface ImmutableShortLongMapFactory
-
public interface ImmutableShortLongMapFactoryA factory which creates instances of typeImmutableShortLongMap. 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 ImmutableShortLongMapempty()<T> ImmutableShortLongMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableShortLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortLongMapof()Same asempty().ImmutableShortLongMapof(short key, long value)Same aswith(short, long).ImmutableShortLongMapofAll(ShortLongMap map)Same aswithAll(ShortLongMap).ImmutableShortLongMapwith()Same asempty().ImmutableShortLongMapwith(short key, long value)ImmutableShortLongMapwithAll(ShortLongMap map)
-
-
-
Method Detail
-
empty
ImmutableShortLongMap empty()
- Since:
- 6.0
-
of
ImmutableShortLongMap of()
Same asempty().
-
with
ImmutableShortLongMap with()
Same asempty().
-
of
ImmutableShortLongMap of(short key, long value)
Same aswith(short, long).
-
with
ImmutableShortLongMap with(short key, long value)
-
ofAll
ImmutableShortLongMap ofAll(ShortLongMap map)
Same aswithAll(ShortLongMap).
-
withAll
ImmutableShortLongMap withAll(ShortLongMap map)
-
from
<T> ImmutableShortLongMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableShortLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-