Interface ImmutableShortByteMapFactory
- All Known Implementing Classes:
ImmutableShortByteMapFactoryImpl
public interface ImmutableShortByteMapFactory
A factory which creates instances of type
ImmutableShortByteMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableShortByteMap
empty()
<T> ImmutableShortByteMap
from(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 Details
-
empty
ImmutableShortByteMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableShortByteMap with()Same asempty()
. -
of
Same aswith(short, byte)
. -
with
-
ofAll
Same aswithAll(ShortByteMap)
. -
withAll
-
from
<T> ImmutableShortByteMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-