Interface ImmutableLongLongMapFactory
-
public interface ImmutableLongLongMapFactoryA factory which creates instances of typeImmutableLongLongMap. 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 ImmutableLongLongMapempty()<T> ImmutableLongLongMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableLongLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongLongMapof()Same asempty().ImmutableLongLongMapof(long key, long value)Same aswith(long, long).ImmutableLongLongMapofAll(LongLongMap map)Same aswithAll(LongLongMap).ImmutableLongLongMapwith()Same asempty().ImmutableLongLongMapwith(long key, long value)ImmutableLongLongMapwithAll(LongLongMap map)
-
-
-
Method Detail
-
empty
ImmutableLongLongMap empty()
- Since:
- 6.0
-
of
ImmutableLongLongMap of()
Same asempty().
-
with
ImmutableLongLongMap with()
Same asempty().
-
of
ImmutableLongLongMap of(long key, long value)
Same aswith(long, long).
-
with
ImmutableLongLongMap with(long key, long value)
-
ofAll
ImmutableLongLongMap ofAll(LongLongMap map)
Same aswithAll(LongLongMap).
-
withAll
ImmutableLongLongMap withAll(LongLongMap map)
-
from
<T> ImmutableLongLongMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableLongLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-