ParameterTypeInteger.java

package org.opentrafficsim.base.parameters;

import java.io.Serializable;

import org.opentrafficsim.base.parameters.constraint.Constraint;

/**
 * Wrapper class for int parameters.
 * <p>
 * Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
 * BSD-style license. See <a href="http://opentrafficsim.org/docs/current/license.html">OpenTrafficSim License</a>.
 * <p>
 * @version $Revision$, $LastChangedDate$, by $Author$, initial version Apr 13, 2016 <br>
 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
 */
public class ParameterTypeInteger extends ParameterTypeNumeric<Integer> implements Serializable
{
    /** */
    private static final long serialVersionUID = 20160400L;

    /**
     * Construct a new ParameterTypeInteger without default value and check.
     * @param id String; short name of the new ParameterTypeInteger
     * @param description String; parameter description or full name of the new ParameterTypeInteger
     */
    public ParameterTypeInteger(final String id, final String description)
    {
        super(id, description, Integer.class);
    }

    /**
     * Construct a new ParameterTypeInteger with default value, without check.
     * @param id String; short name of the new ParameterTypeInteger
     * @param description String; parameter description or full name of the new ParameterTypeInteger
     * @param defaultValue int; the default value of the new ParameterTypeInteger
     */
    public ParameterTypeInteger(final String id, final String description, final int defaultValue)
    {
        super(id, description, Integer.class, defaultValue);
    }

    /**
     * Construct a new ParameterTypeInteger with default value, without check.
     * @param id String; short name of the new ParameterTypeInteger
     * @param description String; parameter description or full name of the new ParameterTypeInteger
     * @param defaultValue Integer; the default value of the new ParameterTypeInteger
     */
    public ParameterTypeInteger(final String id, final String description, final Integer defaultValue)
    {
        super(id, description, Integer.class, defaultValue);
    }

    /**
     * Construct a new ParameterTypeInteger without default value, with check.
     * @param id String; short name of the new ParameterTypeInteger
     * @param description String; parameter description or full name of the new ParameterTypeInteger
     * @param constraint Constraint&lt;? super Integer&gt;; constraint for parameter values
     */
    public ParameterTypeInteger(final String id, final String description, final Constraint<? super Integer> constraint)
    {
        super(id, description, Integer.class, constraint);
    }

    /**
     * Construct a new ParameterTypeInteger with default value and check.
     * @param id String; short name of the new ParameterTypeInteger
     * @param description String; parameter description or full name of the new ParameterTypeInteger
     * @param defaultValue int; the default value of the new ParameterTypeInteger
     * @param constraint Constraint&lt;? super Integer&gt;; constraint for parameter values
     */
    public ParameterTypeInteger(final String id, final String description, final int defaultValue,
            final Constraint<? super Integer> constraint)
    {
        super(id, description, Integer.class, defaultValue, constraint);
    }

    /**
     * Construct a new ParameterTypeInteger with default value and check.
     * @param id String; short name of the new ParameterTypeInteger
     * @param description String; parameter description or full name of the new ParameterTypeInteger
     * @param defaultValue Integer; the default value of the new ParameterTypeInteger
     * @param constraint Constraint&lt;Number&gt;; constraint for parameter values
     */
    public ParameterTypeInteger(final String id, final String description, final Integer defaultValue,
            final Constraint<Number> constraint)
    {
        super(id, description, Integer.class, defaultValue, constraint);
    }

    /** {@inheritDoc} */
    @Override
    public final String printValue(final Parameters parameters) throws ParameterException
    {
        return Integer.toString(parameters.getParameter(this));
    }

    /**
     * Method to overwrite for checks with constraints.
     * @param value Value to check with constraints.
     * @param params Set of parameters.
     * @throws ParameterException If the value does not comply with constraints.
     */
    public void check(final int value, final Parameters params) throws ParameterException
    {
        //
    }

    /** {@inheritDoc} */
    @SuppressWarnings("checkstyle:designforextension")
    @Override
    public String toString()
    {
        return "ParameterTypeInteger [id=" + getId() + ", description=" + getDescription() + "]";
    }

}