Interface ImmutableShortByteMapFactory
-
- All Known Implementing Classes:
ImmutableShortByteMapFactoryImpl
public interface ImmutableShortByteMapFactory
A factory which creates instances of typeImmutableShortByteMap
. 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 ImmutableShortByteMap
empty()
<T> ImmutableShortByteMap
from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortByteMap
of()
Same asempty()
.ImmutableShortByteMap
of(short key, byte value)
Same aswith(short, byte)
.ImmutableShortByteMap
ofAll(ShortByteMap map)
Same aswithAll(ShortByteMap)
.ImmutableShortByteMap
with()
Same asempty()
.ImmutableShortByteMap
with(short key, byte value)
ImmutableShortByteMap
withAll(ShortByteMap map)
-
-
-
Method Detail
-
empty
ImmutableShortByteMap empty()
- Since:
- 6.0
-
of
ImmutableShortByteMap of()
Same asempty()
.
-
with
ImmutableShortByteMap with()
Same asempty()
.
-
of
ImmutableShortByteMap of(short key, byte value)
Same aswith(short, byte)
.
-
with
ImmutableShortByteMap with(short key, byte value)
-
ofAll
ImmutableShortByteMap ofAll(ShortByteMap map)
Same aswithAll(ShortByteMap)
.
-
withAll
ImmutableShortByteMap withAll(ShortByteMap map)
-
from
<T> ImmutableShortByteMap from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-