Interface ImmutableLongCharMapFactory
- All Known Implementing Classes:
ImmutableLongCharMapFactoryImpl
public interface ImmutableLongCharMapFactory
A factory which creates instances of type
ImmutableLongCharMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableLongCharMap
empty()
<T> ImmutableLongCharMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableLongCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongCharMap
of()
Same asempty()
.ImmutableLongCharMap
of(long key, char value)
Same aswith(long, char)
.ImmutableLongCharMap
ofAll(LongCharMap map)
Same aswithAll(LongCharMap)
.ImmutableLongCharMap
with()
Same asempty()
.ImmutableLongCharMap
with(long key, char value)
ImmutableLongCharMap
withAll(LongCharMap map)
-
Method Details
-
empty
ImmutableLongCharMap empty()- Since:
- 6.0
-
of
ImmutableLongCharMap of()Same asempty()
. -
with
ImmutableLongCharMap with()Same asempty()
. -
of
Same aswith(long, char)
. -
with
-
ofAll
Same aswithAll(LongCharMap)
. -
withAll
-
from
<T> ImmutableLongCharMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableLongCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-