Interface ImmutableShortShortMapFactory
-
- All Known Implementing Classes:
ImmutableShortShortMapFactoryImpl
public interface ImmutableShortShortMapFactory
A factory which creates instances of typeImmutableShortShortMap
. 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 ImmutableShortShortMap
empty()
<T> ImmutableShortShortMap
from(java.lang.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 Detail
-
empty
ImmutableShortShortMap empty()
- Since:
- 6.0
-
of
ImmutableShortShortMap of()
Same asempty()
.
-
with
ImmutableShortShortMap with()
Same asempty()
.
-
of
ImmutableShortShortMap of(short key, short value)
Same aswith(short, short)
.
-
with
ImmutableShortShortMap with(short key, short value)
-
ofAll
ImmutableShortShortMap ofAll(ShortShortMap map)
Same aswithAll(ShortShortMap)
.
-
withAll
ImmutableShortShortMap withAll(ShortShortMap map)
-
from
<T> ImmutableShortShortMap from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableShortShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-