Interface ImmutableShortShortMapFactory
- All Known Implementing Classes:
ImmutableShortShortMapFactoryImpl
public interface ImmutableShortShortMapFactory
A factory which creates instances of type
ImmutableShortShortMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableShortShortMap
empty()
<T> ImmutableShortShortMap
from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableShortShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortShortMap
of()
Same asempty()
.ImmutableShortShortMap
of(short key, short value)
Same aswith(short, short)
.ImmutableShortShortMap
ofAll(ShortShortMap map)
Same aswithAll(ShortShortMap)
.ImmutableShortShortMap
with()
Same asempty()
.ImmutableShortShortMap
with(short key, short value)
ImmutableShortShortMap
withAll(ShortShortMap map)
-
Method Details
-
empty
ImmutableShortShortMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableShortShortMap with()Same asempty()
. -
of
Same aswith(short, short)
. -
with
-
ofAll
Same aswithAll(ShortShortMap)
. -
withAll
-
from
<T> ImmutableShortShortMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableShortShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-