Interface ImmutableShortBooleanMapFactory
-
- All Known Implementing Classes:
ImmutableShortBooleanMapFactoryImpl
public interface ImmutableShortBooleanMapFactory
A 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 ImmutableShortBooleanMap
empty()
<T> ImmutableShortBooleanMap
from(java.lang.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 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(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-