Interface ImmutableLongObjectMapFactory
-
- All Known Implementing Classes:
ImmutableLongObjectMapFactoryImpl
public interface ImmutableLongObjectMapFactory
A factory which creates instances of typeImmutableLongObjectMap
. This file was automatically generated from template file immutablePrimitiveObjectMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> ImmutableLongObjectMap<V>
empty()
<T,V>
ImmutableLongObjectMap<V>from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableLongObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> ImmutableLongObjectMap<V>
of()
Same asempty()
.<V> ImmutableLongObjectMap<V>
of(long key, V value)
Same aswith(long, Object)
.<V> ImmutableLongObjectMap<V>
ofAll(LongObjectMap<? extends V> map)
Same aswithAll(LongObjectMap)
.<V> ImmutableLongObjectMap<V>
with()
Same asempty()
.<V> ImmutableLongObjectMap<V>
with(long key, V value)
<V> ImmutableLongObjectMap<V>
withAll(LongObjectMap<? extends V> map)
-
-
-
Method Detail
-
empty
<V> ImmutableLongObjectMap<V> empty()
- Since:
- 6.0
-
of
<V> ImmutableLongObjectMap<V> of()
Same asempty()
.
-
with
<V> ImmutableLongObjectMap<V> with()
Same asempty()
.
-
of
<V> ImmutableLongObjectMap<V> of(long key, V value)
Same aswith(long, Object)
.
-
with
<V> ImmutableLongObjectMap<V> with(long key, V value)
-
ofAll
<V> ImmutableLongObjectMap<V> ofAll(LongObjectMap<? extends V> map)
Same aswithAll(LongObjectMap)
.
-
withAll
<V> ImmutableLongObjectMap<V> withAll(LongObjectMap<? extends V> map)
-
from
<T,V> ImmutableLongObjectMap<V> from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableLongObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-