Interface ImmutableByteLongMapFactory
-
public interface ImmutableByteLongMapFactoryA factory which creates instances of typeImmutableByteLongMap. 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 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 Detail
-
empty
ImmutableByteLongMap empty()
- Since:
- 6.0
-
of
ImmutableByteLongMap of()
Same asempty().
-
with
ImmutableByteLongMap with()
Same asempty().
-
of
ImmutableByteLongMap of(byte key, long value)
Same aswith(byte, long).
-
with
ImmutableByteLongMap with(byte key, long value)
-
ofAll
ImmutableByteLongMap ofAll(ByteLongMap map)
Same aswithAll(ByteLongMap).
-
withAll
ImmutableByteLongMap withAll(ByteLongMap map)
-
from
<T> ImmutableByteLongMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-