Interface ImmutableLongByteMapFactory
-
- All Known Implementing Classes:
ImmutableLongByteMapFactoryImpl
public interface ImmutableLongByteMapFactory
A factory which creates instances of typeImmutableLongByteMap
. 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 ImmutableLongByteMap
empty()
<T> ImmutableLongByteMap
from(java.lang.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 Detail
-
empty
ImmutableLongByteMap empty()
- Since:
- 6.0
-
of
ImmutableLongByteMap of()
Same asempty()
.
-
with
ImmutableLongByteMap with()
Same asempty()
.
-
of
ImmutableLongByteMap of(long key, byte value)
Same aswith(long, byte)
.
-
with
ImmutableLongByteMap with(long key, byte value)
-
ofAll
ImmutableLongByteMap ofAll(LongByteMap map)
Same aswithAll(LongByteMap)
.
-
withAll
ImmutableLongByteMap withAll(LongByteMap map)
-
from
<T> ImmutableLongByteMap from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-