ImmutableAbstractCollection.java
package org.djutils.immutablecollections;
import java.util.Collection;
import org.djutils.exceptions.Throw;
/**
* An abstract base class for an immutable wrapper for a Set.
* <p>
* Copyright (c) 2016-2021 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
* for project information <a href="https://djutils.org" target="_blank"> https://djutils.org</a>. The DJUTILS project is
* distributed under a three-clause BSD-style license, which can be found at
* <a href="https://djutils.org/docs/license.html" target="_blank"> https://djutils.org/docs/license.html</a>.
* </p>
* @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
* @param <E> the type of content of this Set
*/
public abstract class ImmutableAbstractCollection<E> implements ImmutableCollection<E>
{
/** */
private static final long serialVersionUID = 20180908L;
/** COPY stores a safe, internal copy of the collection; WRAP stores a pointer to the original collection. */
@SuppressWarnings("checkstyle:visibilitymodifier")
protected final Immutable copyOrWrap;
/**
* Construct an abstract immutable collection.
* @param copyOrWrap Immutable; indicates whether the immutable is a copy or a wrap
*/
public ImmutableAbstractCollection(final Immutable copyOrWrap)
{
Throw.whenNull(copyOrWrap, "the copyOrWrap argument should be Immutable.COPY or Immutable.WRAP");
this.copyOrWrap = copyOrWrap;
}
/**
* Returns the underlying collection of this immutable collection. In case of Immutable.WRAP, this will be the original
* collection. In case of IMMUTABLE.COPY, this will be the internally stored (mutable) copy of the collection.
* @return the underlying collection of this immutable collection.
*/
protected abstract Collection<E> getUnderlyingCollection();
}