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 ImmutableByteLongMap
empty()
<T> ImmutableByteLongMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteLongMap
of()
Same asempty()
.ImmutableByteLongMap
of(byte key, long value)
Same aswith(byte, long)
.ImmutableByteLongMap
ofAll(ByteLongMap map)
Same aswithAll(ByteLongMap)
.ImmutableByteLongMap
with()
Same asempty()
.ImmutableByteLongMap
with(byte key, long value)
ImmutableByteLongMap
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 anImmutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-