Class ImmutableObjectBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectBooleanMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableObjectBooleanMapFactory
public class ImmutableObjectBooleanMapFactoryImpl extends Object implements ImmutableObjectBooleanMapFactory
ImmutableObjectBooleanMapFactoryImpl is a factory implementation which creates instances of typeImmutableObjectBooleanMap. This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableObjectBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableObjectBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K> ImmutableObjectBooleanMap<K>empty()<T,K>
ImmutableObjectBooleanMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)<K> ImmutableObjectBooleanMap<K>of()<K> ImmutableObjectBooleanMap<K>of(K key, boolean value)<K> ImmutableObjectBooleanMap<K>ofAll(ObjectBooleanMap<? extends K> map)<K> ImmutableObjectBooleanMap<K>with()<K> ImmutableObjectBooleanMap<K>with(K key, boolean value)<K> ImmutableObjectBooleanMap<K>withAll(ObjectBooleanMap<? extends K> map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableObjectBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K> ImmutableObjectBooleanMap<K> empty()
- Specified by:
emptyin interfaceImmutableObjectBooleanMapFactory
-
of
public <K> ImmutableObjectBooleanMap<K> of()
- Specified by:
ofin interfaceImmutableObjectBooleanMapFactory
-
with
public <K> ImmutableObjectBooleanMap<K> with()
- Specified by:
within interfaceImmutableObjectBooleanMapFactory
-
of
public <K> ImmutableObjectBooleanMap<K> of(K key, boolean value)
- Specified by:
ofin interfaceImmutableObjectBooleanMapFactory
-
with
public <K> ImmutableObjectBooleanMap<K> with(K key, boolean value)
- Specified by:
within interfaceImmutableObjectBooleanMapFactory
-
ofAll
public <K> ImmutableObjectBooleanMap<K> ofAll(ObjectBooleanMap<? extends K> map)
- Specified by:
ofAllin interfaceImmutableObjectBooleanMapFactory
-
withAll
public <K> ImmutableObjectBooleanMap<K> withAll(ObjectBooleanMap<? extends K> map)
- Specified by:
withAllin interfaceImmutableObjectBooleanMapFactory
-
from
public <T,K> ImmutableObjectBooleanMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableObjectBooleanMapFactory
-
-