/*
 * 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.immutable.primitive;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.Serializable;

import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.BooleanIterable;
import org.eclipse.collections.api.LazyDoubleIterable;
import org.eclipse.collections.api.LazyBooleanIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.ImmutableBag;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableBooleanBag;
import org.eclipse.collections.api.bag.primitive.ImmutableBooleanBag;
import org.eclipse.collections.api.block.function.primitive.BooleanToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectBooleanToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.DoubleBooleanPredicate;
import org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate;
import org.eclipse.collections.api.block.procedure.primitive.DoubleBooleanProcedure;
import org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure;
import org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure;
import org.eclipse.collections.api.collection.primitive.MutableBooleanCollection;
import org.eclipse.collections.api.iterator.DoubleIterator;
import org.eclipse.collections.api.iterator.BooleanIterator;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.impl.factory.Lists;
import org.eclipse.collections.api.list.primitive.MutableBooleanList;
import org.eclipse.collections.api.map.primitive.DoubleBooleanMap;
import org.eclipse.collections.api.map.primitive.ImmutableDoubleBooleanMap;
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.block.procedure.checked.primitive.CheckedDoubleBooleanProcedure;
import org.eclipse.collections.impl.collection.mutable.primitive.UnmodifiableBooleanCollection;
import org.eclipse.collections.impl.factory.primitive.BooleanBags;
import org.eclipse.collections.impl.iterator.UnmodifiableBooleanIterator;
import org.eclipse.collections.impl.map.mutable.primitive.DoubleBooleanHashMap;
import org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableDoubleSet;

ImmutableDoubleBooleanHashMap is the non-modifiable equivalent of DoubleBooleanHashMap. This file was automatically generated from template file immutablePrimitivePrimitiveHashMap.stg.
Since:4.0.
/** * ImmutableDoubleBooleanHashMap is the non-modifiable equivalent of {@link DoubleBooleanHashMap}. * This file was automatically generated from template file immutablePrimitivePrimitiveHashMap.stg. * * @since 4.0. */
final class ImmutableDoubleBooleanHashMap implements ImmutableDoubleBooleanMap, Serializable { private static final long serialVersionUID = 1L; private final MutableDoubleBooleanMap delegate; ImmutableDoubleBooleanHashMap(DoubleBooleanMap delegate) { this.delegate = new DoubleBooleanHashMap(delegate); } @Override public boolean get(double key) { return this.delegate.get(key); } @Override public boolean getIfAbsent(double key, boolean ifAbsent) { return this.delegate.getIfAbsent(key, ifAbsent); } @Override public boolean getOrThrow(double key) { return this.delegate.getOrThrow(key); } @Override public boolean containsKey(double key) { return this.delegate.containsKey(key); } @Override public boolean containsValue(boolean value) { return this.delegate.containsValue(value); } @Override public void forEachValue(BooleanProcedure procedure) { this.delegate.forEachValue(procedure); } @Override public void forEachKey(DoubleProcedure procedure) { this.delegate.forEachKey(procedure); } @Override public void forEachKeyValue(DoubleBooleanProcedure procedure) { this.delegate.forEachKeyValue(procedure); } @Override public LazyDoubleIterable keysView() { return this.delegate.keysView(); } @Override public RichIterable<DoubleBooleanPair> keyValuesView() { return this.delegate.keyValuesView(); } @Override public ImmutableDoubleBooleanMap select(DoubleBooleanPredicate predicate) { return this.delegate.select(predicate).toImmutable(); } @Override public ImmutableDoubleBooleanMap reject(DoubleBooleanPredicate predicate) { return this.delegate.reject(predicate).toImmutable(); } @Override public <T> T injectInto(T injectedValue, ObjectBooleanToObjectFunction<? super T, ? extends T> function) { return this.delegate.injectInto(injectedValue, function); } @Override public RichIterable<BooleanIterable> chunk(int size) { if (size <= 0) { throw new IllegalArgumentException("Size for groups must be positive but was: " + size); } MutableList<BooleanIterable> result = Lists.mutable.empty(); if (this.notEmpty()) { BooleanIterator iterator = this.delegate.booleanIterator(); while (iterator.hasNext()) { MutableBooleanBag batch = BooleanBags.mutable.empty(); for (int i = 0; i < size && iterator.hasNext(); i++) { batch.add(iterator.next()); } result.add(batch.toImmutable()); } } return result.toImmutable(); } @Override public ImmutableDoubleBooleanMap toImmutable() { return this; } @Override public BooleanIterator booleanIterator() { return new UnmodifiableBooleanIterator(this.delegate.booleanIterator()); } @Override public void forEach(BooleanProcedure procedure) { this.each(procedure); }
Since:7.0.
/** * @since 7.0. */
@Override public void each(BooleanProcedure procedure) { this.delegate.forEach(procedure); } @Override public int count(BooleanPredicate predicate) { return this.delegate.count(predicate); } @Override public boolean anySatisfy(BooleanPredicate predicate) { return this.delegate.anySatisfy(predicate); } @Override public boolean allSatisfy(BooleanPredicate predicate) { return this.delegate.allSatisfy(predicate); } @Override public boolean noneSatisfy(BooleanPredicate predicate) { return this.delegate.noneSatisfy(predicate); } @Override public ImmutableBooleanBag select(BooleanPredicate predicate) { return this.delegate.select(predicate).toImmutable(); } @Override public ImmutableBooleanBag reject(BooleanPredicate predicate) { return this.delegate.reject(predicate).toImmutable(); } @Override public <V> ImmutableBag<V> collect(BooleanToObjectFunction<? extends V> function) { MutableBag<V> bag = this.delegate.collect(function); return bag.toImmutable(); } @Override public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone) { return this.delegate.detectIfNone(predicate, ifNone); } @Override public boolean[] toArray() { return this.delegate.toArray(); } @Override public boolean[] toArray(boolean[] target) { return this.delegate.toArray(target); } @Override public boolean contains(boolean value) { return this.delegate.contains(value); } @Override public boolean containsAll(boolean... source) { return this.delegate.containsAll(source); } @Override public boolean containsAll(BooleanIterable source) { return this.delegate.containsAll(source); } @Override public MutableBooleanList toList() { return this.delegate.toList(); } @Override public MutableBooleanSet toSet() { return this.delegate.toSet(); } @Override public MutableBooleanBag toBag() { return this.delegate.toBag(); } @Override public LazyBooleanIterable asLazy() { return this.delegate.asLazy(); } @Override public ImmutableDoubleBooleanMap newWithKeyValue(double key, boolean value) { MutableDoubleBooleanMap map = new DoubleBooleanHashMap(this.size() + 1); map.putAll(this); map.put(key, value); return map.toImmutable(); } @Override public ImmutableDoubleBooleanMap newWithoutKey(double key) { MutableDoubleBooleanMap map = new DoubleBooleanHashMap(this.size()); map.putAll(this); map.removeKey(key); return map.toImmutable(); } @Override public ImmutableDoubleBooleanMap newWithoutAllKeys(DoubleIterable keys) { MutableDoubleBooleanMap map = new DoubleBooleanHashMap(this.size()); map.putAll(this); DoubleIterator iterator = keys.doubleIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); } @Override public int size() { return this.delegate.size(); } @Override public boolean isEmpty() { return this.delegate.isEmpty(); } @Override public boolean notEmpty() { return this.delegate.notEmpty(); } @Override public String makeString() { return this.delegate.makeString(); } @Override public String makeString(String separator) { return this.delegate.makeString(separator); } @Override public String makeString(String start, String separator, String end) { return this.delegate.makeString(start, separator, end); } @Override public void appendString(Appendable appendable) { this.delegate.appendString(appendable); } @Override public void appendString(Appendable appendable, String separator) { this.delegate.appendString(appendable, separator); } @Override public void appendString(Appendable appendable, String start, String separator, String end) { this.delegate.appendString(appendable, start, separator, end); } @Override public MutableDoubleSet keySet() { return UnmodifiableDoubleSet.of(this.delegate.keySet()); } @Override public MutableBooleanCollection values() { return UnmodifiableBooleanCollection.of(this.delegate.values()); } @Override public boolean equals(Object obj) { return this.delegate.equals(obj); } @Override public int hashCode() { return this.delegate.hashCode(); } @Override public String toString() { return this.delegate.toString(); } private Object writeReplace() { return new ImmutableDoubleBooleanMapSerializationProxy(this); } protected static class ImmutableDoubleBooleanMapSerializationProxy implements Externalizable { private static final long serialVersionUID = 1L; private DoubleBooleanMap map; @SuppressWarnings("UnusedDeclaration") public ImmutableDoubleBooleanMapSerializationProxy() { // Empty constructor for Externalizable class } protected ImmutableDoubleBooleanMapSerializationProxy(DoubleBooleanMap map) { this.map = map; } @Override public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.map.size()); try { this.map.forEachKeyValue(new CheckedDoubleBooleanProcedure() { @Override public void safeValue(double key, boolean value) throws IOException { out.writeDouble(key); out.writeBoolean(value); } }); } catch (RuntimeException e) { if (e.getCause() instanceof IOException) { throw (IOException) e.getCause(); } throw e; } } @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { int size = in.readInt(); MutableDoubleBooleanMap deserializedMap = new DoubleBooleanHashMap(); for (int i = 0; i < size; i++) { deserializedMap.put(in.readDouble(), in.readBoolean()); } this.map = deserializedMap; } protected Object readResolve() { return this.map.toImmutable(); } } }