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