Interface ImmutableLongLongMapFactory
- All Known Implementing Classes:
ImmutableLongLongMapFactoryImpl
public interface ImmutableLongLongMapFactory
A factory which creates instances of type
ImmutableLongLongMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableLongLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(long key, long value) Same aswith(long, long).ofAll(LongLongMap map) Same aswithAll(LongLongMap).with()Same asempty().with(long key, long value) withAll(LongLongMap map)
-
Method Details
-
empty
ImmutableLongLongMap empty()- Since:
- 6.0
-
of
ImmutableLongLongMap of()Same asempty(). -
with
ImmutableLongLongMap with()Same asempty(). -
of
Same aswith(long, long). -
with
-
ofAll
Same aswithAll(LongLongMap). -
withAll
-
from
<T> ImmutableLongLongMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableLongLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-