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 Type Method Description ImmutableLongLongMap
empty()
<T> ImmutableLongLongMap
from(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 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 anImmutableLongLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-