Interface ImmutableLongByteMapFactory
-
public interface ImmutableLongByteMapFactoryA 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 ImmutableLongByteMapempty()<T> ImmutableLongByteMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongByteMapof()Same asempty().ImmutableLongByteMapof(long key, byte value)Same aswith(long, byte).ImmutableLongByteMapofAll(LongByteMap map)Same aswithAll(LongByteMap).ImmutableLongByteMapwith()Same asempty().ImmutableLongByteMapwith(long key, byte value)ImmutableLongByteMapwithAll(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(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-