Interface ImmutableShortBooleanMapFactory
-
public interface ImmutableShortBooleanMapFactoryA factory which creates instances of typeImmutableShortBooleanMap. 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 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 Detail
-
empty
ImmutableShortBooleanMap empty()
- Since:
- 6.0
-
of
ImmutableShortBooleanMap of()
Same asempty().
-
with
ImmutableShortBooleanMap with()
Same asempty().
-
of
ImmutableShortBooleanMap of(short key, boolean value)
Same aswith(short, boolean).
-
with
ImmutableShortBooleanMap with(short key, boolean value)
-
ofAll
ImmutableShortBooleanMap ofAll(ShortBooleanMap map)
Same aswithAll(ShortBooleanMap).
-
withAll
ImmutableShortBooleanMap withAll(ShortBooleanMap map)
-
from
<T> ImmutableShortBooleanMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-