FloatAbsoluteTemperature.java
package org.djunits.value.vfloat.scalar;
import java.util.regex.Matcher;
import org.djunits.unit.AbsoluteTemperatureUnit;
import org.djunits.unit.TemperatureUnit;
import org.djunits.unit.Unit;
/**
* Easy access methods for the AbsoluteTemperature FloatScalar. Instead of:
*
* <pre>
* FloatScalar.Abs<AbsoluteTemperatureUnit> value =
* new FloatScalar.Abs<AbsoluteTemperatureUnit>(100.0, AbsoluteTemperatureUnit.SI);
* </pre>
*
* we can now write:
*
* <pre>
* FloatAbsoluteTemperature value = new FloatAbsoluteTemperature(100.0, AbsoluteTemperatureUnit.SI);
* </pre>
*
* The compiler will automatically recognize which units belong to which quantity, and whether the quantity type and the unit
* used are compatible.
* <p>
* Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. <br>
* All rights reserved. <br>
* BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
* <p>
* $LastChangedDate: 2019-02-27 23:44:43 +0100 (Wed, 27 Feb 2019) $, @version $Revision: 333 $, by $Author: averbraeck $,
* initial version Sep 1, 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>
*/
public class FloatAbsoluteTemperature
extends AbstractFloatScalarAbs<AbsoluteTemperatureUnit, FloatAbsoluteTemperature, TemperatureUnit, FloatTemperature>
{
/** */
private static final long serialVersionUID = 20150901L;
/** constant with value zero. */
public static final FloatAbsoluteTemperature ZERO = new FloatAbsoluteTemperature(0.0f, AbsoluteTemperatureUnit.BASE);
/**
* Construct FloatAbsoluteTemperature scalar.
* @param value float value
* @param unit unit for the float value
*/
public FloatAbsoluteTemperature(final float value, final AbsoluteTemperatureUnit unit)
{
super(value, unit);
}
/**
* Construct FloatAbsoluteTemperature scalar using a double value.
* @param value double value
* @param unit unit for the resulting float value
*/
public FloatAbsoluteTemperature(final double value, final AbsoluteTemperatureUnit unit)
{
super((float) value, unit);
}
/**
* Construct FloatAbsoluteTemperature scalar.
* @param value Scalar from which to construct this instance
*/
public FloatAbsoluteTemperature(final FloatAbsoluteTemperature value)
{
super(value);
}
/** {@inheritDoc} */
@Override
public final FloatAbsoluteTemperature instantiateAbs(final float value, final AbsoluteTemperatureUnit unit)
{
return new FloatAbsoluteTemperature(value, unit);
}
/** {@inheritDoc} */
@Override
public final FloatTemperature instantiateRel(final float value, final TemperatureUnit unit)
{
return new FloatTemperature(value, unit);
}
/**
* Construct FloatAbsoluteTemperature scalar.
* @param value float value in BASE units
* @return the new scalar with the BASE value
*/
public static final FloatAbsoluteTemperature createSI(final float value)
{
return new FloatAbsoluteTemperature(value, AbsoluteTemperatureUnit.BASE);
}
/**
* Interpolate between two values.
* @param zero the low value
* @param one the high value
* @param ratio the ratio between 0 and 1, inclusive
* @return a Scalar at the ratio between
*/
public static FloatAbsoluteTemperature interpolate(final FloatAbsoluteTemperature zero, final FloatAbsoluteTemperature one,
final float ratio)
{
return new FloatAbsoluteTemperature(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getUnit()) * ratio,
zero.getUnit());
}
/**
* Return the maximum value of two absolute scalars.
* @param a1 the first scalar
* @param a2 the second scalar
* @return the maximum value of two absolute scalars
*/
public static FloatAbsoluteTemperature max(final FloatAbsoluteTemperature a1, final FloatAbsoluteTemperature a2)
{
return (a1.gt(a2)) ? a1 : a2;
}
/**
* Return the maximum value of more than two absolute scalars.
* @param a1 the first scalar
* @param a2 the second scalar
* @param an the other scalars
* @return the maximum value of more than two absolute scalars
*/
public static FloatAbsoluteTemperature max(final FloatAbsoluteTemperature a1, final FloatAbsoluteTemperature a2,
final FloatAbsoluteTemperature... an)
{
FloatAbsoluteTemperature maxa = (a1.gt(a2)) ? a1 : a2;
for (FloatAbsoluteTemperature a : an)
{
if (a.gt(maxa))
{
maxa = a;
}
}
return maxa;
}
/**
* Return the minimum value of two absolute scalars.
* @param a1 the first scalar
* @param a2 the second scalar
* @return the minimum value of two absolute scalars
*/
public static FloatAbsoluteTemperature min(final FloatAbsoluteTemperature a1, final FloatAbsoluteTemperature a2)
{
return (a1.lt(a2)) ? a1 : a2;
}
/**
* Return the minimum value of more than two absolute scalars.
* @param a1 the first scalar
* @param a2 the second scalar
* @param an the other scalars
* @return the minimum value of more than two absolute scalars
*/
public static FloatAbsoluteTemperature min(final FloatAbsoluteTemperature a1, final FloatAbsoluteTemperature a2,
final FloatAbsoluteTemperature... an)
{
FloatAbsoluteTemperature mina = (a1.lt(a2)) ? a1 : a2;
for (FloatAbsoluteTemperature a : an)
{
if (a.lt(mina))
{
mina = a;
}
}
return mina;
}
/**
* Returns a FloatAbsoluteTemperature representation of a textual representation of a value with a unit. The String
* representation that can be parsed is the double value in the unit, followed by the official abbreviation of the unit.
* Spaces are allowed, but not necessary, between the value and the unit.
* @param text String; the textual representation to parse into a FloatAbsoluteTemperature
* @return the String representation of the value in its unit, followed by the official abbreviation of the unit
* @throws IllegalArgumentException when the text cannot be parsed
*/
public static FloatAbsoluteTemperature valueOf(final String text) throws IllegalArgumentException
{
if (text == null || text.length() == 0)
{
throw new IllegalArgumentException("Error parsing FloatAbsoluteTemperature -- null or empty argument");
}
Matcher matcher = NUMBER_PATTERN.matcher(text);
if (matcher.find())
{
int index = matcher.end();
try
{
String unitString = text.substring(index).trim();
String valueString = text.substring(0, index).trim();
for (AbsoluteTemperatureUnit unit : Unit.getUnits(AbsoluteTemperatureUnit.class))
{
if (unit.getDefaultLocaleTextualRepresentations().contains(unitString))
{
float f = Float.parseFloat(valueString);
return new FloatAbsoluteTemperature(f, unit);
}
}
}
catch (Exception exception)
{
throw new IllegalArgumentException("Error parsing FloatAbsoluteTemperature from " + text, exception);
}
}
throw new IllegalArgumentException("Error parsing FloatAbsoluteTemperature from " + text);
}
}