Interface ImmutableByteLongMapFactory
- All Known Implementing Classes:
ImmutableByteLongMapFactoryImpl
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 Type Method Description ImmutableByteLongMapempty()<T> ImmutableByteLongMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableByteLongMapof()Same asempty().ImmutableByteLongMapof(byte key, long value)Same aswith(byte, long).ImmutableByteLongMapofAll(ByteLongMap map)Same aswithAll(ByteLongMap).ImmutableByteLongMapwith()Same asempty().ImmutableByteLongMapwith(byte key, long value)ImmutableByteLongMapwithAll(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
-