Interface ImmutableShortBooleanMapFactory
- All Known Implementing Classes:
ImmutableShortBooleanMapFactoryImpl
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 Type Method Description ImmutableShortBooleanMapempty()<T> ImmutableShortBooleanMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortBooleanMapof()Same asempty().ImmutableShortBooleanMapof(short key, boolean value)Same aswith(short, boolean).ImmutableShortBooleanMapofAll(ShortBooleanMap map)Same aswithAll(ShortBooleanMap).ImmutableShortBooleanMapwith()Same asempty().ImmutableShortBooleanMapwith(short key, boolean value)ImmutableShortBooleanMapwithAll(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
-