/*
 * 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.bag.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.BooleanIterable;
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.BooleanBag;
import org.eclipse.collections.api.bag.primitive.ImmutableBooleanBag;
import org.eclipse.collections.api.bag.primitive.MutableBooleanBag;
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.IntPredicate;
import org.eclipse.collections.api.block.predicate.primitive.BooleanPredicate;
import org.eclipse.collections.api.block.procedure.primitive.BooleanIntProcedure;
import org.eclipse.collections.api.block.procedure.primitive.BooleanProcedure;
import org.eclipse.collections.api.iterator.BooleanIterator;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.list.primitive.MutableBooleanList;
import org.eclipse.collections.api.set.primitive.MutableBooleanSet;
import org.eclipse.collections.impl.bag.mutable.primitive.BooleanHashBag;
import org.eclipse.collections.impl.block.procedure.checked.primitive.CheckedBooleanIntProcedure;
import org.eclipse.collections.impl.factory.Lists;
import org.eclipse.collections.impl.factory.primitive.BooleanBags;
import org.eclipse.collections.impl.iterator.UnmodifiableBooleanIterator;
import org.eclipse.collections.api.list.ImmutableList;
import org.eclipse.collections.api.tuple.primitive.BooleanIntPair;
import org.eclipse.collections.api.set.primitive.ImmutableBooleanSet;
import org.eclipse.collections.impl.factory.primitive.BooleanSets;

ImmutableBooleanHashBag is the non-modifiable equivalent of BooleanHashBag. This file was automatically generated from template file immutablePrimitiveHashBag.stg.
Since:4.0.
/** * ImmutableBooleanHashBag is the non-modifiable equivalent of {@link BooleanHashBag}. * This file was automatically generated from template file immutablePrimitiveHashBag.stg. * * @since 4.0. */
final class ImmutableBooleanHashBag implements ImmutableBooleanBag, Serializable { private static final long serialVersionUID = 1L; private final MutableBooleanBag delegate; private ImmutableBooleanHashBag(boolean[] newElements) { this.checkOptimizedSize(newElements.length); this.delegate = BooleanHashBag.newBagWith(newElements); } private void checkOptimizedSize(int length) { if (length <= 1) { throw new IllegalArgumentException("Use BooleanBags.immutable.with() to instantiate an optimized collection"); } } public static ImmutableBooleanHashBag newBagWith(boolean... elements) { return new ImmutableBooleanHashBag(elements); } @Override public ImmutableBooleanBag newWith(boolean element) { return BooleanHashBag.newBag(this.delegate).with(element).toImmutable(); } @Override public ImmutableBooleanBag newWithout(boolean element) { BooleanHashBag hashBag = BooleanHashBag.newBag(this.delegate); hashBag.remove(element); return hashBag.toImmutable(); } @Override public ImmutableBooleanBag newWithAll(BooleanIterable elements) { BooleanHashBag bag = BooleanHashBag.newBag(this.delegate); bag.addAll(elements); return bag.toImmutable(); } @Override public ImmutableBooleanBag newWithoutAll(BooleanIterable elements) { BooleanHashBag bag = BooleanHashBag.newBag(this.delegate); bag.removeAll(elements); return bag.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 boolean contains(boolean value) { return this.delegate.contains(value); } @Override public boolean containsAll(BooleanIterable source) { return this.delegate.containsAll(source); } @Override public boolean containsAll(boolean... elements) { return this.delegate.containsAll(elements); } @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 ImmutableBooleanBag select(BooleanPredicate predicate) { return this.delegate.select(predicate).toImmutable(); } @Override public ImmutableBooleanBag selectByOccurrences(IntPredicate predicate) { return this.delegate.selectByOccurrences(predicate).toImmutable(); } @Override public ImmutableBooleanSet selectUnique() { MutableBooleanSet result = BooleanSets.mutable.empty(); this.forEachWithOccurrences((each, occurrences) -> { if (occurrences == 1) { result.add(each); } }); return result.toImmutable(); } @Override public ImmutableList<BooleanIntPair> topOccurrences(int count) { return this.delegate.topOccurrences(count).toImmutable(); } @Override public ImmutableList<BooleanIntPair> bottomOccurrences(int count) { return this.delegate.bottomOccurrences(count).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 MutableBooleanList toList() { return this.delegate.toList(); } @Override public int sizeDistinct() { return this.delegate.sizeDistinct(); } @Override public int occurrencesOf(boolean item) { return this.delegate.occurrencesOf(item); } @Override public void forEachWithOccurrences(BooleanIntProcedure booleanIntProcedure) { this.delegate.forEachWithOccurrences(booleanIntProcedure); } @Override public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone) { return this.delegate.detectIfNone(predicate, ifNone); } @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 noneSatisfy(BooleanPredicate predicate) { return this.delegate.noneSatisfy(predicate); } @Override public boolean allSatisfy(BooleanPredicate predicate) { return this.delegate.allSatisfy(predicate); } @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()) { if (this.size() <= size) { result.add(this); } else { BooleanIterator iterator = this.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 boolean equals(Object obj) { return this.delegate.equals(obj); } @Override public int hashCode() { return this.delegate.hashCode(); } @Override public MutableBooleanSet toSet() { return this.delegate.toSet(); } @Override public MutableBooleanBag toBag() { return this.delegate.toBag(); } @Override public ImmutableBooleanBag toImmutable() { return this; } @Override public LazyBooleanIterable asLazy() { return this.delegate.asLazy(); } @Override public boolean[] toArray() { return this.delegate.toArray(); } @Override public boolean[] toArray(boolean[] target) { return this.delegate.toArray(target); } @Override public String toString() { return this.delegate.toString(); } @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 BooleanIterator booleanIterator() { return new UnmodifiableBooleanIterator(this.delegate.booleanIterator()); } private Object writeReplace() { return new ImmutableBooleanBagSerializationProxy(this); } protected static class ImmutableBooleanBagSerializationProxy implements Externalizable { private static final long serialVersionUID = 1L; private BooleanBag bag; @SuppressWarnings("UnusedDeclaration") public ImmutableBooleanBagSerializationProxy() { // Empty constructor for Externalizable class } protected ImmutableBooleanBagSerializationProxy(BooleanBag bag) { this.bag = bag; } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(this.bag.sizeDistinct()); try { this.bag.forEachWithOccurrences(new CheckedBooleanIntProcedure() { @Override public void safeValue(boolean item, int count) throws IOException { out.writeBoolean(item); out.writeInt(count); } }); } 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(); MutableBooleanBag deserializedBag = new BooleanHashBag(); for (int i = 0; i < size; i++) { deserializedBag.addOccurrences(in.readBoolean(), in.readInt()); } this.bag = deserializedBag; } protected Object readResolve() { return this.bag.toImmutable(); } } }