Interface ImmutableByteLongMapFactory
public interface ImmutableByteLongMapFactory
A factory which creates instances of type
ImmutableByteLongMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(byte key, long value) Same aswith(byte, long).ofAll(ByteLongMap map) Same aswithAll(ByteLongMap).with()Same asempty().with(byte key, long value) withAll(ByteLongMap map)
-
Method Details
-
empty
ImmutableByteLongMap empty()- Since:
- 6.0
-
of
ImmutableByteLongMap of()Same asempty(). -
with
ImmutableByteLongMap with()Same asempty(). -
of
Same aswith(byte, long). -
with
-
ofAll
Same aswithAll(ByteLongMap). -
withAll
-
from
<T> ImmutableByteLongMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-