Interface ImmutableCharLongMapFactory
-
- All Known Implementing Classes:
ImmutableCharLongMapFactoryImpl
public interface ImmutableCharLongMapFactory
A factory which creates instances of typeImmutableCharLongMap
. 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 ImmutableCharLongMap
empty()
<T> ImmutableCharLongMap
from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableCharLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharLongMap
of()
Same asempty()
.ImmutableCharLongMap
of(char key, long value)
Same aswith(char, long)
.ImmutableCharLongMap
ofAll(CharLongMap map)
Same aswithAll(CharLongMap)
.ImmutableCharLongMap
with()
Same asempty()
.ImmutableCharLongMap
with(char key, long value)
ImmutableCharLongMap
withAll(CharLongMap map)
-
-
-
Method Detail
-
empty
ImmutableCharLongMap empty()
- Since:
- 6.0
-
of
ImmutableCharLongMap of()
Same asempty()
.
-
with
ImmutableCharLongMap with()
Same asempty()
.
-
of
ImmutableCharLongMap of(char key, long value)
Same aswith(char, long)
.
-
with
ImmutableCharLongMap with(char key, long value)
-
ofAll
ImmutableCharLongMap ofAll(CharLongMap map)
Same aswithAll(CharLongMap)
.
-
withAll
ImmutableCharLongMap withAll(CharLongMap map)
-
from
<T> ImmutableCharLongMap from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableCharLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-