Interface ImmutableLongShortMapFactory
-
public interface ImmutableLongShortMapFactoryA factory which creates instances of typeImmutableLongShortMap. 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 ImmutableLongShortMapempty()<T> ImmutableLongShortMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableLongShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongShortMapof()Same asempty().ImmutableLongShortMapof(long key, short value)Same aswith(long, short).ImmutableLongShortMapofAll(LongShortMap map)Same aswithAll(LongShortMap).ImmutableLongShortMapwith()Same asempty().ImmutableLongShortMapwith(long key, short value)ImmutableLongShortMapwithAll(LongShortMap map)
-
-
-
Method Detail
-
empty
ImmutableLongShortMap empty()
- Since:
- 6.0
-
of
ImmutableLongShortMap of()
Same asempty().
-
with
ImmutableLongShortMap with()
Same asempty().
-
of
ImmutableLongShortMap of(long key, short value)
Same aswith(long, short).
-
with
ImmutableLongShortMap with(long key, short value)
-
ofAll
ImmutableLongShortMap ofAll(LongShortMap map)
Same aswithAll(LongShortMap).
-
withAll
ImmutableLongShortMap withAll(LongShortMap map)
-
from
<T> ImmutableLongShortMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableLongShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-