Interface ImmutableLongLongMapFactory
-
- All Known Implementing Classes:
ImmutableLongLongMapFactoryImpl
public interface ImmutableLongLongMapFactory
A 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 ImmutableLongLongMap
empty()
<T> ImmutableLongLongMap
from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableLongLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongLongMap
of()
Same asempty()
.ImmutableLongLongMap
of(long key, long value)
Same aswith(long, long)
.ImmutableLongLongMap
ofAll(LongLongMap map)
Same aswithAll(LongLongMap)
.ImmutableLongLongMap
with()
Same asempty()
.ImmutableLongLongMap
with(long key, long value)
ImmutableLongLongMap
withAll(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(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableLongLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-