All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.collections.impl.map.mutable.primitive.SynchronizedIntBooleanMap Maven / Gradle / Ivy

Go to download

Builds the commons-text. Requires eclipse-collections-api be built first and be excluded from any other poms requiring it.

There is a newer version: 11.1.0-r13
Show newest version
/*
 * Copyright (c) 2022 Goldman Sachs and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.impl.map.mutable.primitive;

import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;

import org.eclipse.collections.api.BooleanIterable;
import org.eclipse.collections.api.IntIterable;
import org.eclipse.collections.api.LazyBooleanIterable;
import org.eclipse.collections.api.LazyIntIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableBooleanBag;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction0;
import org.eclipse.collections.api.block.function.primitive.BooleanToBooleanFunction;
import org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.IntBooleanToBooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.IntToBooleanFunction;
import org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate;
import org.eclipse.collections.api.block.predicate.primitive.IntBooleanPredicate;
import org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure;
import org.eclipse.collections.api.block.procedure.primitive.IntBooleanProcedure;
import org.eclipse.collections.api.block.procedure.primitive.IntProcedure;
import org.eclipse.collections.api.collection.primitive.MutableBooleanCollection;
import org.eclipse.collections.api.iterator.MutableBooleanIterator;
import org.eclipse.collections.api.list.primitive.MutableBooleanList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.primitive.ImmutableIntBooleanMap;
import org.eclipse.collections.api.map.primitive.IntBooleanMap;
import org.eclipse.collections.api.map.primitive.MutableIntBooleanMap;
import org.eclipse.collections.api.set.primitive.MutableIntSet;
import org.eclipse.collections.api.set.primitive.MutableBooleanSet;
import org.eclipse.collections.api.tuple.primitive.IntBooleanPair;
import org.eclipse.collections.impl.SynchronizedRichIterable;
import org.eclipse.collections.impl.factory.primitive.IntBooleanMaps;
import org.eclipse.collections.impl.set.mutable.primitive.SynchronizedIntSet;
import org.eclipse.collections.impl.collection.mutable.primitive.SynchronizedBooleanCollection;

/**
 * A synchronized view of a {@link MutableIntBooleanMap}. It is imperative that the user manually synchronize on the collection when iterating over it using the
 * {@link MutableBooleanIterator} as per {@link Collections#synchronizedCollection(Collection)}.
 * 

* This file was automatically generated from template file synchronizedPrimitivePrimitiveMap.stg. * * @see MutableIntBooleanMap#asSynchronized() * @see MutableMap#asSynchronized() * @since 3.1. */ public class SynchronizedIntBooleanMap implements MutableIntBooleanMap, Serializable { private static final long serialVersionUID = 1L; private final Object lock; private final MutableIntBooleanMap map; public SynchronizedIntBooleanMap(MutableIntBooleanMap map) { this(map, null); } public SynchronizedIntBooleanMap(MutableIntBooleanMap map, Object newLock) { if (map == null) { throw new IllegalArgumentException("Cannot create a SynchronizedIntBooleanMap on a null map"); } this.map = map; this.lock = newLock == null ? this : newLock; } @Override public void clear() { synchronized (this.lock) { this.map.clear(); } } @Override public void put(int key, boolean value) { synchronized (this.lock) { this.map.put(key, value); } } @Override public void putPair(IntBooleanPair keyValuePair) { synchronized (this.lock) { this.map.put(keyValuePair.getOne(), keyValuePair.getTwo()); } } @Override public void putAll(IntBooleanMap map) { synchronized (this.lock) { this.map.putAll(map); } } @Override public void updateValues(IntBooleanToBooleanFunction function) { synchronized (this.lock) { this.map.updateValues(function); } } @Override public void removeKey(int key) { synchronized (this.lock) { this.map.removeKey(key); } } @Override public void remove(int key) { synchronized (this.lock) { this.map.remove(key); } } @Override public boolean removeKeyIfAbsent(int key, boolean value) { synchronized (this.lock) { return this.map.removeKeyIfAbsent(key, value); } } @Override public boolean getIfAbsentPut(int key, boolean value) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, value); } } @Override public boolean getAndPut(int key, boolean putValue, boolean defaultValue) { synchronized (this.lock) { return this.map.getAndPut(key, putValue, defaultValue); } } @Override public boolean getIfAbsentPut(int key, BooleanFunction0 function) { synchronized (this.lock) { return this.map.getIfAbsentPut(key, function); } } @Override public boolean getIfAbsentPutWithKey(int key, IntToBooleanFunction function) { synchronized (this.lock) { return this.map.getIfAbsentPutWithKey(key, function); } } @Override public

boolean getIfAbsentPutWith(int key, BooleanFunction function, P parameter) { synchronized (this.lock) { return this.map.getIfAbsentPutWith(key, function, parameter); } } @Override public boolean updateValue(int key, boolean initialValueIfAbsent, BooleanToBooleanFunction function) { synchronized (this.lock) { return this.map.updateValue(key, initialValueIfAbsent, function); } } @Override public boolean get(int key) { synchronized (this.lock) { return this.map.get(key); } } @Override public boolean getIfAbsent(int key, boolean ifAbsent) { synchronized (this.lock) { return this.map.getIfAbsent(key, ifAbsent); } } @Override public boolean getOrThrow(int key) { synchronized (this.lock) { return this.map.getOrThrow(key); } } @Override public boolean containsKey(int key) { synchronized (this.lock) { return this.map.containsKey(key); } } @Override public boolean containsValue(boolean value) { synchronized (this.lock) { return this.map.containsValue(value); } } @Override public void forEachValue(BooleanProcedure procedure) { synchronized (this.lock) { this.map.forEachValue(procedure); } } @Override public void forEachKey(IntProcedure procedure) { synchronized (this.lock) { this.map.forEachKey(procedure); } } @Override public void forEachKeyValue(IntBooleanProcedure procedure) { synchronized (this.lock) { this.map.forEachKeyValue(procedure); } } @Override public LazyIntIterable keysView() { synchronized (this.lock) { return this.map.keysView(); } } @Override public RichIterable keyValuesView() { synchronized (this.lock) { return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy(); } } @Override public MutableIntBooleanMap select(IntBooleanPredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } @Override public MutableIntBooleanMap reject(IntBooleanPredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } /** * This must be manually synchronized by the developer. */ @Override public MutableBooleanIterator booleanIterator() { return this.map.booleanIterator(); } /** * @since 7.0. */ @Override public void each(BooleanProcedure procedure) { synchronized (this.lock) { this.map.forEach(procedure); } } @Override public int count(BooleanPredicate predicate) { synchronized (this.lock) { return this.map.count(predicate); } } @Override public boolean anySatisfy(BooleanPredicate predicate) { synchronized (this.lock) { return this.map.anySatisfy(predicate); } } @Override public boolean allSatisfy(BooleanPredicate predicate) { synchronized (this.lock) { return this.map.allSatisfy(predicate); } } @Override public boolean noneSatisfy(BooleanPredicate predicate) { synchronized (this.lock) { return this.map.noneSatisfy(predicate); } } @Override public MutableBooleanBag select(BooleanPredicate predicate) { synchronized (this.lock) { return this.map.select(predicate); } } @Override public MutableBooleanBag reject(BooleanPredicate predicate) { synchronized (this.lock) { return this.map.reject(predicate); } } @Override public MutableBag collect(BooleanToObjectFunction function) { synchronized (this.lock) { return this.map.collect(function); } } @Override public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone) { synchronized (this.lock) { return this.map.detectIfNone(predicate, ifNone); } } @Override public boolean[] toArray() { synchronized (this.lock) { return this.map.toArray(); } } @Override public boolean[] toArray(boolean[] target) { synchronized (this.lock) { return this.map.toArray(target); } } @Override public boolean contains(boolean value) { synchronized (this.lock) { return this.map.contains(value); } } @Override public boolean containsAll(boolean... source) { synchronized (this.lock) { return this.map.containsAll(source); } } @Override public boolean containsAll(BooleanIterable source) { synchronized (this.lock) { return this.map.containsAll(source); } } @Override public MutableBooleanList toList() { synchronized (this.lock) { return this.map.toList(); } } @Override public MutableBooleanSet toSet() { synchronized (this.lock) { return this.map.toSet(); } } @Override public MutableBooleanBag toBag() { synchronized (this.lock) { return this.map.toBag(); } } @Override public LazyBooleanIterable asLazy() { synchronized (this.lock) { return this.map.asLazy(); } } @Override public MutableIntBooleanMap withKeyValue(int key, boolean value) { synchronized (this.lock) { this.map.withKeyValue(key, value); } return this; } @Override public MutableIntBooleanMap withoutKey(int key) { synchronized (this.lock) { this.map.withoutKey(key); } return this; } @Override public MutableIntBooleanMap withoutAllKeys(IntIterable keys) { synchronized (this.lock) { this.map.withoutAllKeys(keys); } return this; } @Override public MutableIntBooleanMap asUnmodifiable() { synchronized (this.lock) { return new UnmodifiableIntBooleanMap(this); } } @Override public MutableIntBooleanMap asSynchronized() { return this; } @Override public ImmutableIntBooleanMap toImmutable() { synchronized (this.lock) { return IntBooleanMaps.immutable.withAll(this); } } @Override public int size() { synchronized (this.lock) { return this.map.size(); } } @Override public boolean isEmpty() { synchronized (this.lock) { return this.map.isEmpty(); } } @Override public boolean notEmpty() { synchronized (this.lock) { return this.map.notEmpty(); } } @Override public MutableIntSet keySet() { synchronized (this.lock) { return SynchronizedIntSet.of(this.map.keySet(), this.lock); } } @Override public MutableBooleanCollection values() { synchronized (this.lock) { return SynchronizedBooleanCollection.of(this.map.values(), this.lock); } } @Override public boolean equals(Object otherMap) { synchronized (this.lock) { return this.map.equals(otherMap); } } @Override public int hashCode() { synchronized (this.lock) { return this.map.hashCode(); } } @Override public String toString() { synchronized (this.lock) { return this.map.toString(); } } @Override public String makeString() { synchronized (this.lock) { return this.map.makeString(); } } @Override public String makeString(String separator) { synchronized (this.lock) { return this.map.makeString(separator); } } @Override public String makeString(String start, String separator, String end) { synchronized (this.lock) { return this.map.makeString(start, separator, end); } } @Override public void appendString(Appendable appendable) { synchronized (this.lock) { this.map.appendString(appendable); } } @Override public void appendString(Appendable appendable, String separator) { synchronized (this.lock) { this.map.appendString(appendable, separator); } } @Override public void appendString(Appendable appendable, String start, String separator, String end) { synchronized (this.lock) { this.map.appendString(appendable, start, separator, end); } } @Override public T injectInto(T injectedValue, ObjectBooleanToObjectFunction function) { synchronized (this.lock) { return this.map.injectInto(injectedValue, function); } } @Override public RichIterable chunk(int size) { synchronized (this.lock) { return this.map.chunk(size); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy