Class MutableObjectBooleanMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableObjectBooleanMapFactoryImpl
- All Implemented Interfaces:
MutableObjectBooleanMapFactory
public class MutableObjectBooleanMapFactoryImpl
extends Object
implements MutableObjectBooleanMapFactory
MutableObjectBooleanMapFactoryImpl is a factory implementation which creates instances of type
MutableObjectBooleanMap
.
This file was automatically generated from template file mutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<K> MutableObjectBooleanMap<K>
empty()
<T,
K> MutableObjectBooleanMap<K> from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableObjectBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> MutableObjectBooleanMap<K>
of()
<K> MutableObjectBooleanMap<K>
of
(K key, boolean value) <K> MutableObjectBooleanMap<K>
of
(K key1, boolean value1, K key2, boolean value2) <K> MutableObjectBooleanMap<K>
of
(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3) <K> MutableObjectBooleanMap<K>
of
(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3, K key4, boolean value4) <K> MutableObjectBooleanMap<K>
ofAll
(ObjectBooleanMap<? extends K> map) <K> MutableObjectBooleanMap<K>
ofInitialCapacity
(int capacity) <K> MutableObjectBooleanMap<K>
with()
<K> MutableObjectBooleanMap<K>
with
(K key, boolean value) <K> MutableObjectBooleanMap<K>
with
(K key1, boolean value1, K key2, boolean value2) <K> MutableObjectBooleanMap<K>
with
(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3) <K> MutableObjectBooleanMap<K>
with
(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3, K key4, boolean value4) <K> MutableObjectBooleanMap<K>
withAll
(ObjectBooleanMap<? extends K> map) <K> MutableObjectBooleanMap<K>
withInitialCapacity
(int capacity)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableObjectBooleanMapFactoryImpl
public MutableObjectBooleanMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableObjectBooleanMapFactory
-
of
Description copied from interface:MutableObjectBooleanMapFactory
- Specified by:
of
in interfaceMutableObjectBooleanMapFactory
-
with
Description copied from interface:MutableObjectBooleanMapFactory
- Specified by:
with
in interfaceMutableObjectBooleanMapFactory
-
of
- Specified by:
of
in interfaceMutableObjectBooleanMapFactory
-
with
- Specified by:
with
in interfaceMutableObjectBooleanMapFactory
-
of
- Specified by:
of
in interfaceMutableObjectBooleanMapFactory
-
with
- Specified by:
with
in interfaceMutableObjectBooleanMapFactory
-
of
public <K> MutableObjectBooleanMap<K> of(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3) - Specified by:
of
in interfaceMutableObjectBooleanMapFactory
-
with
public <K> MutableObjectBooleanMap<K> with(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3) - Specified by:
with
in interfaceMutableObjectBooleanMapFactory
-
of
public <K> MutableObjectBooleanMap<K> of(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3, K key4, boolean value4) - Specified by:
of
in interfaceMutableObjectBooleanMapFactory
-
with
public <K> MutableObjectBooleanMap<K> with(K key1, boolean value1, K key2, boolean value2, K key3, boolean value3, K key4, boolean value4) - Specified by:
with
in interfaceMutableObjectBooleanMapFactory
-
ofInitialCapacity
Description copied from interface:MutableObjectBooleanMapFactory
Same asMutableObjectBooleanMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableObjectBooleanMapFactory
-
withInitialCapacity
Description copied from interface:MutableObjectBooleanMapFactory
Same asMutableObjectBooleanMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableObjectBooleanMapFactory
-
ofAll
Description copied from interface:MutableObjectBooleanMapFactory
- Specified by:
ofAll
in interfaceMutableObjectBooleanMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableObjectBooleanMapFactory
-
from
public <T,K> MutableObjectBooleanMap<K> from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, BooleanFunction<? super T> valueFunction) Description copied from interface:MutableObjectBooleanMapFactory
Creates anMutableObjectBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableObjectBooleanMapFactory
-