Scalar.java
package org.djunits.value;
import java.io.Serializable;
import org.djunits.unit.Unit;
/**
* Basics of the Scalar type
* <p>
* This file was generated by the djunits value classes generator, 26 jun, 2015
* <p>
* Copyright (c) 2015-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
* <p>
* $LastChangedDate: 2019-01-18 00:35:01 +0100 (Fri, 18 Jan 2019) $, @version $Revision: 324 $, by $Author: averbraeck $,
* initial version 26 jun, 2015 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @param <U> the unit of the values in the constructor and for display
*/
public abstract class Scalar<U extends Unit<U>> extends Number implements Value<U>, Serializable
{
/** */
private static final long serialVersionUID = 20150626L;
/** The display unit of the Scalar. */
private U unit;
/**
* Construct a new Scalar.
* @param unit U; the unit of the new Scalar
*/
public Scalar(final U unit)
{
this.unit = unit;
}
/** {@inheritDoc} */
@Override
public final U getUnit()
{
return this.unit;
}
/** {@inheritDoc} */
@Override
public final double expressAsSIUnit(final double value)
{
if (this.unit.isBaseSIUnit())
{
return value;
}
return ValueUtil.expressAsSIUnit(value, this.unit);
}
/**
* Convert a value from the standard SI unit into the unit of this Scalar.
* @param value double; the value to convert
* @return double; the value in the unit of this Scalar
*/
protected final double expressAsSpecifiedUnit(final double value)
{
if (this.unit.isBaseSIUnit())
{
return value;
}
return ValueUtil.expressAsUnit(value, this.unit);
}
/** {@inheritDoc} */
@Override
public void setDisplayUnit(final U newUnit)
{
this.unit = newUnit;
}
/** {@inheritDoc} */
@Override
public final boolean isAbsolute()
{
return this instanceof Absolute;
}
/** {@inheritDoc} */
@Override
public final boolean isRelative()
{
return this instanceof Relative;
}
// No hashcode or equals -- has to be implemented on a deeper level
}