Interface ImmutableByteLongMapFactory
-
- All Known Implementing Classes:
ImmutableByteLongMapFactoryImpl
public interface ImmutableByteLongMapFactory
A 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 ImmutableByteLongMap
empty()
<T> ImmutableByteLongMap
from(java.lang.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 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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-