/*
 * Copyright (c) 2018 Goldman Sachs.
 * 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 org.eclipse.collections.api.BooleanIterable;
import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.LazyBooleanIterable;
import org.eclipse.collections.api.LazyDoubleIterable;
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.DoubleBooleanToBooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleToBooleanFunction;
import org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate;
import org.eclipse.collections.api.block.predicate.primitive.DoubleBooleanPredicate;
import org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure;
import org.eclipse.collections.api.block.procedure.primitive.DoubleBooleanProcedure;
import org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure;
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.primitive.ImmutableDoubleBooleanMap;
import org.eclipse.collections.api.map.primitive.DoubleBooleanMap;
import org.eclipse.collections.api.map.primitive.MutableDoubleBooleanMap;
import org.eclipse.collections.api.set.primitive.MutableDoubleSet;
import org.eclipse.collections.api.set.primitive.MutableBooleanSet;
import org.eclipse.collections.api.tuple.primitive.DoubleBooleanPair;
import org.eclipse.collections.impl.collection.mutable.primitive.UnmodifiableBooleanCollection;
import org.eclipse.collections.impl.factory.primitive.DoubleBooleanMaps;
import org.eclipse.collections.impl.iterator.UnmodifiableBooleanIterator;
import org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableDoubleSet;

This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
Since:3.1.
/** * This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg. * * @since 3.1. */
public class UnmodifiableDoubleBooleanMap implements MutableDoubleBooleanMap, Serializable { private static final long serialVersionUID = 1L; private final MutableDoubleBooleanMap map; public UnmodifiableDoubleBooleanMap(MutableDoubleBooleanMap map) { if (map == null) { throw new IllegalArgumentException("Cannot create a UnmodifiableDoubleBooleanMap on a null map"); } this.map = map; } @Override public void clear() { throw new UnsupportedOperationException("Cannot call clear() on " + this.getClass().getSimpleName()); } @Override public void put(double key, boolean value) { throw new UnsupportedOperationException("Cannot call put() on " + this.getClass().getSimpleName()); } @Override public void putPair(DoubleBooleanPair keyValuePair) { throw new UnsupportedOperationException("Cannot call putPair() on " + this.getClass().getSimpleName()); } @Override public void putAll(DoubleBooleanMap map) { throw new UnsupportedOperationException("Cannot call putAll() on " + this.getClass().getSimpleName()); } @Override public void updateValues(DoubleBooleanToBooleanFunction function) { throw new UnsupportedOperationException("Cannot call updateValues() on " + this.getClass().getSimpleName()); } @Override public void removeKey(double key) { throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName()); } @Override public void remove(double key) { throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName()); } @Override public boolean removeKeyIfAbsent(double key, boolean value) { if (this.map.containsKey(key)) { throw new UnsupportedOperationException("Cannot call removeKey() on " + this.getClass().getSimpleName()); } return value; } @Override public boolean getIfAbsentPut(double key, boolean value) { return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); }); } @Override public boolean getIfAbsentPut(double key, BooleanFunction0 function) { return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); }); } @Override public boolean getIfAbsentPutWithKey(double key, DoubleToBooleanFunction function) { return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); }); } @Override public <P> boolean getIfAbsentPutWith(double key, BooleanFunction<? super P> function, P parameter) { return this.map.getIfAbsentPut(key, () -> { throw new UnsupportedOperationException(); }); } @Override public boolean updateValue(double key, boolean initialValueIfAbsent, BooleanToBooleanFunction function) { throw new UnsupportedOperationException("Cannot call updateValue() on " + this.getClass().getSimpleName()); } @Override public boolean get(double key) { return this.map.get(key); } @Override public boolean getIfAbsent(double key, boolean ifAbsent) { return this.map.getIfAbsent(key, ifAbsent); } @Override public boolean getOrThrow(double key) { return this.map.getOrThrow(key); } @Override public boolean containsKey(double key) { return this.map.containsKey(key); } @Override public boolean containsValue(boolean value) { return this.map.containsValue(value); } @Override public void forEachValue(BooleanProcedure procedure) { this.map.forEachValue(procedure); } @Override public void forEachKey(DoubleProcedure procedure) { this.map.forEachKey(procedure); } @Override public void forEachKeyValue(DoubleBooleanProcedure procedure) { this.map.forEachKeyValue(procedure); } @Override public LazyDoubleIterable keysView() { return this.map.keysView(); } @Override public RichIterable<DoubleBooleanPair> keyValuesView() { return this.map.keyValuesView(); } @Override public MutableDoubleBooleanMap select(DoubleBooleanPredicate predicate) { return this.map.select(predicate); } @Override public MutableDoubleBooleanMap reject(DoubleBooleanPredicate predicate) { return this.map.reject(predicate); } @Override public MutableBooleanIterator booleanIterator() { return new UnmodifiableBooleanIterator(this.map.booleanIterator()); } @Override public void forEach(BooleanProcedure procedure) { this.each(procedure); }
Since:7.0.
/** * @since 7.0. */
@Override public void each(BooleanProcedure procedure) { this.map.forEach(procedure); } @Override public int count(BooleanPredicate predicate) { return this.map.count(predicate); } @Override public boolean anySatisfy(BooleanPredicate predicate) { return this.map.anySatisfy(predicate); } @Override public boolean allSatisfy(BooleanPredicate predicate) { return this.map.allSatisfy(predicate); } @Override public boolean noneSatisfy(BooleanPredicate predicate) { return this.map.noneSatisfy(predicate); } @Override public MutableBooleanBag select(BooleanPredicate predicate) { return this.map.select(predicate); } @Override public MutableBooleanBag reject(BooleanPredicate predicate) { return this.map.reject(predicate); } @Override public <V> MutableBag<V> collect(BooleanToObjectFunction<? extends V> function) { return this.map.collect(function); } @Override public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone) { return this.map.detectIfNone(predicate, ifNone); } @Override public boolean[] toArray() { return this.map.toArray(); } @Override public boolean[] toArray(boolean[] target) { return this.map.toArray(target); } @Override public boolean contains(boolean value) { return this.map.contains(value); } @Override public boolean containsAll(boolean... source) { return this.map.containsAll(source); } @Override public boolean containsAll(BooleanIterable source) { return this.map.containsAll(source); } @Override public MutableBooleanList toList() { return this.map.toList(); } @Override public MutableBooleanSet toSet() { return this.map.toSet(); } @Override public MutableBooleanBag toBag() { return this.map.toBag(); } @Override public LazyBooleanIterable asLazy() { return this.map.asLazy(); } @Override public MutableDoubleBooleanMap withKeyValue(double key, boolean value) { throw new UnsupportedOperationException("Cannot call withKeyValue() on " + this.getClass().getSimpleName()); } @Override public MutableDoubleBooleanMap withoutKey(double key) { throw new UnsupportedOperationException("Cannot call withoutKey() on " + this.getClass().getSimpleName()); } @Override public MutableDoubleBooleanMap withoutAllKeys(DoubleIterable keys) { throw new UnsupportedOperationException("Cannot call withoutAllKeys() on " + this.getClass().getSimpleName()); } @Override public MutableDoubleBooleanMap asUnmodifiable() { return this; } @Override public MutableDoubleBooleanMap asSynchronized() { return new SynchronizedDoubleBooleanMap(this); } @Override public ImmutableDoubleBooleanMap toImmutable() { return DoubleBooleanMaps.immutable.withAll(this); } @Override public int size() { return this.map.size(); } @Override public boolean isEmpty() { return this.map.isEmpty(); } @Override public boolean notEmpty() { return this.map.notEmpty(); } @Override public MutableDoubleSet keySet() { return UnmodifiableDoubleSet.of(this.map.keySet()); } @Override public MutableBooleanCollection values() { return UnmodifiableBooleanCollection.of(this.map.values()); } @Override public boolean equals(Object otherMap) { return this.map.equals(otherMap); } @Override public int hashCode() { return this.map.hashCode(); } @Override public String toString() { return this.map.toString(); } @Override public String makeString() { return this.map.makeString(); } @Override public String makeString(String separator) { return this.map.makeString(separator); } @Override public String makeString(String start, String separator, String end) { return this.map.makeString(start, separator, end); } @Override public void appendString(Appendable appendable) { this.map.appendString(appendable); } @Override public void appendString(Appendable appendable, String separator) { this.map.appendString(appendable, separator); } @Override public void appendString(Appendable appendable, String start, String separator, String end) { this.map.appendString(appendable, start, separator, end); } @Override public <T> T injectInto(T injectedValue, ObjectBooleanToObjectFunction<? super T, ? extends T> function) { return this.map.injectInto(injectedValue, function); } @Override public RichIterable<BooleanIterable> chunk(int size) { return this.map.chunk(size); } }