package org.opentrafficsim.base.parameters.constraint;
import java.util.Collection;
import java.util.HashSet;
import org.djutils.exceptions.Throw;
/**
* Constraint that checks whether a value is in a given constraint collection.
*
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 10 sep. 2017
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
* @param value type
*/
public class CollectionConstraint implements Constraint
{
/** Acceptable objects. */
@SuppressWarnings("checkstyle:visibilitymodifier")
protected final Collection objects;
/**
* @param objects Collection<T>; acceptable objects
*/
public CollectionConstraint(final Collection objects)
{
Throw.whenNull(objects, "Collection of acceptable objects may not be null.");
this.objects = objects;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public boolean accept(final T value)
{
return this.objects.contains(value);
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public String failMessage()
{
return "Value of parameter '%s' is not in the collection of acceptable values.";
}
/**
* Creates a new instance with given objects.
* @param objs T...; acceptable objects
* @param type
* @return new instance with given objects
*/
@SafeVarargs
public static CollectionConstraint newInstance(final T... objs)
{
Collection collection = new HashSet<>();
for (T t : objs)
{
collection.add(t);
}
return new CollectionConstraint<>(collection);
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public String toString()
{
return "CollectionConstraint [objects=" + this.objects + "]";
}
}