public interface MutableLongObjectMapFactory
MutableLongObjectMap.
This file was automatically generated from template file mutablePrimitiveObjectMapFactory.stg.| Modifier and Type | Method and Description |
|---|---|
<V> MutableLongObjectMap<V> |
empty() |
<T,V> MutableLongObjectMap<V> |
from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
Function<? super T,? extends V> valueFunction)
Creates an
MutableLongObjectMap from an Iterable<T> by applying keyFunction and valueFunction. |
<V> MutableLongObjectMap<V> |
of()
Same as
empty(). |
default <V> MutableLongObjectMap<V> |
of(long key,
V value) |
default <V> MutableLongObjectMap<V> |
of(long key1,
V value1,
long key2,
V value2) |
default <V> MutableLongObjectMap<V> |
of(long key1,
V value1,
long key2,
V value2,
long key3,
V value3) |
default <V> MutableLongObjectMap<V> |
of(long key1,
V value1,
long key2,
V value2,
long key3,
V value3,
long key4,
V value4) |
<V> MutableLongObjectMap<V> |
ofAll(LongObjectMap<? extends V> map)
Same as
withAll(LongObjectMap). |
<V> MutableLongObjectMap<V> |
ofInitialCapacity(int capacity)
Same as
empty(). |
<V> MutableLongObjectMap<V> |
with()
Same as
empty(). |
default <V> MutableLongObjectMap<V> |
with(long key,
V value) |
default <V> MutableLongObjectMap<V> |
with(long key1,
V value1,
long key2,
V value2) |
default <V> MutableLongObjectMap<V> |
with(long key1,
V value1,
long key2,
V value2,
long key3,
V value3) |
default <V> MutableLongObjectMap<V> |
with(long key1,
V value1,
long key2,
V value2,
long key3,
V value3,
long key4,
V value4) |
<V> MutableLongObjectMap<V> |
withAll(LongObjectMap<? extends V> map) |
<V> MutableLongObjectMap<V> |
withInitialCapacity(int capacity)
Same as
empty(). |
<V> MutableLongObjectMap<V> empty()
<V> MutableLongObjectMap<V> of()
empty().<V> MutableLongObjectMap<V> with()
empty().default <V> MutableLongObjectMap<V> of(long key, V value)
default <V> MutableLongObjectMap<V> with(long key, V value)
default <V> MutableLongObjectMap<V> of(long key1, V value1, long key2, V value2)
default <V> MutableLongObjectMap<V> with(long key1, V value1, long key2, V value2)
default <V> MutableLongObjectMap<V> of(long key1, V value1, long key2, V value2, long key3, V value3)
default <V> MutableLongObjectMap<V> with(long key1, V value1, long key2, V value2, long key3, V value3)
default <V> MutableLongObjectMap<V> of(long key1, V value1, long key2, V value2, long key3, V value3, long key4, V value4)
default <V> MutableLongObjectMap<V> with(long key1, V value1, long key2, V value2, long key3, V value3, long key4, V value4)
<V> MutableLongObjectMap<V> ofInitialCapacity(int capacity)
empty(). but takes in an initial capacity<V> MutableLongObjectMap<V> withInitialCapacity(int capacity)
empty(). but takes in an initial capacity<V> MutableLongObjectMap<V> ofAll(LongObjectMap<? extends V> map)
withAll(LongObjectMap).<V> MutableLongObjectMap<V> withAll(LongObjectMap<? extends V> map)
<T,V> MutableLongObjectMap<V> from(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
MutableLongObjectMap from an Iterable<T> by applying keyFunction and valueFunction.Copyright © 2004–2023. All rights reserved.