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 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 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 anImmutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-