NumberTime.java

package org.sim0mq.message.types;

import java.io.Serializable;

import org.djunits.unit.TimeUnit;
import org.djunits.value.vdouble.scalar.Time;
import org.djunits.value.vfloat.scalar.FloatTime;

/**
 * Wrapper for a Number or float/double with Unit of type Time. Store it internally as a Number <b>and</b> as a DoubleScalar,
 * and have methods to retrieve it in different ways.
 * <p>
 * Copyright (c) 2016-2017 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
 * BSD-style license. See <a href="http://sim0mq.org/docs/current/license.html">Sim0MQ License</a>.
 * </p>
 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
 * initial version Apr 24, 2017 <br>
 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
 */
public class NumberTime extends Number implements Serializable
{
    /** */
    private static final long serialVersionUID = 20170424L;

    /** Number - any of the number types. */
    private final Number time;

    /** DoubleScalar of type Time. */
    private final Time doubleScalar;

    /**
     * Create a duration from a Number.
     * @param time the duration as a Number.
     */
    public NumberTime(final Number time)
    {
        this.time = time;
        this.doubleScalar = new Time(time.doubleValue(), TimeUnit.BASE_SECOND);
    }

    /**
     * Create a duration from a DoubleScalar Time type.
     * @param time the duration as a DoubleScalar Time.
     */
    public NumberTime(final Time time)
    {
        this.time = time;
        this.doubleScalar = time;
    }

    /**
     * Create a duration from a FloatScalar FloatTime type.
     * @param time the duration as a FloatScalar FloatTime.
     */
    public NumberTime(final FloatTime time)
    {
        this.time = time;
        this.doubleScalar = new Time(time.getInUnit(), time.getUnit());
    }

    /** {@inheritDoc} */
    @Override
    public int intValue()
    {
        return this.time.intValue();
    }

    /** {@inheritDoc} */
    @Override
    public long longValue()
    {
        return this.time.longValue();
    }

    /** {@inheritDoc} */
    @Override
    public float floatValue()
    {
        return this.time.floatValue();
    }

    /** {@inheritDoc} */
    @Override
    public double doubleValue()
    {
        return this.time.doubleValue();
    }

    /**
     * @return the duration as a djunits Time type
     */
    public Time getTime()
    {
        return this.doubleScalar;
    }

    /**
     * @return the duration as a djunits FloatTime type
     */
    public FloatTime getFloatTime()
    {
        return new FloatTime((float) this.doubleScalar.getInUnit(), this.doubleScalar.getUnit());
    }
}