Interface ImmutableShortBooleanMapFactory
public interface ImmutableShortBooleanMapFactory
A factory which creates instances of type
ImmutableShortBooleanMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(short key, boolean value) Same aswith(short, boolean).ofAll(ShortBooleanMap map) Same aswithAll(ShortBooleanMap).with()Same asempty().with(short key, boolean value) withAll(ShortBooleanMap map)
-
Method Details
-
empty
ImmutableShortBooleanMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableShortBooleanMap with()Same asempty(). -
of
Same aswith(short, boolean). -
with
-
ofAll
Same aswithAll(ShortBooleanMap). -
withAll
-
from
<T> ImmutableShortBooleanMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-