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