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