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 ImmutableShortBooleanMap
empty()
<T> ImmutableShortBooleanMap
from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortBooleanMap
of()
Same asempty()
.ImmutableShortBooleanMap
of(short key, boolean value)
Same aswith(short, boolean)
.ImmutableShortBooleanMap
ofAll(ShortBooleanMap map)
Same aswithAll(ShortBooleanMap)
.ImmutableShortBooleanMap
with()
Same asempty()
.ImmutableShortBooleanMap
with(short key, boolean value)
ImmutableShortBooleanMap
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 anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-