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