FloatElectricalCharge.java
package org.djunits.value.vfloat.scalar;
import java.util.regex.Matcher;
import org.djunits.unit.DimensionlessUnit;
import org.djunits.unit.DurationUnit;
import org.djunits.unit.ElectricalChargeUnit;
import org.djunits.unit.ElectricalCurrentUnit;
import org.djunits.unit.Unit;
/**
* Easy access methods for the ElectricalCharge FloatScalar, which is relative by definition. An example is Speed. Instead of:
*
* <pre>
* FloatScalar.Rel<ElectricalChargeUnit> value = new FloatScalar.Rel<ElectricalChargeUnit>(100.0, ElectricalChargeUnit.SI);
* </pre>
*
* we can now write:
*
* <pre>
* FloatElectricalCharge value = new FloatElectricalCharge(100.0, ElectricalChargeUnit.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. All rights reserved. <br>
* BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
* <p>
* $LastChangedDate: 2019-03-03 00:53:50 +0100 (Sun, 03 Mar 2019) $, @version $Revision: 349 $, by $Author: averbraeck $,
* initial version Sep 5, 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 FloatElectricalCharge extends AbstractFloatScalarRel<ElectricalChargeUnit, FloatElectricalCharge>
{
/** */
private static final long serialVersionUID = 20150901L;
/** constant with value zero. */
public static final FloatElectricalCharge ZERO = new FloatElectricalCharge(0.0f, ElectricalChargeUnit.SI);
/** constant with value NaN. */
@SuppressWarnings("checkstyle:constantname")
public static final FloatElectricalCharge NaN = new FloatElectricalCharge(Float.NaN, ElectricalChargeUnit.SI);
/** constant with value POSITIVE_INFINITY. */
public static final FloatElectricalCharge POSITIVE_INFINITY =
new FloatElectricalCharge(Float.POSITIVE_INFINITY, ElectricalChargeUnit.SI);
/** constant with value NEGATIVE_INFINITY. */
public static final FloatElectricalCharge NEGATIVE_INFINITY =
new FloatElectricalCharge(Float.NEGATIVE_INFINITY, ElectricalChargeUnit.SI);
/** constant with value MAX_VALUE. */
public static final FloatElectricalCharge POS_MAXVALUE =
new FloatElectricalCharge(Float.MAX_VALUE, ElectricalChargeUnit.SI);
/** constant with value -MAX_VALUE. */
public static final FloatElectricalCharge NEG_MAXVALUE =
new FloatElectricalCharge(-Float.MAX_VALUE, ElectricalChargeUnit.SI);
/**
* Construct FloatElectricalCharge scalar.
* @param value float value
* @param unit unit for the float value
*/
public FloatElectricalCharge(final float value, final ElectricalChargeUnit unit)
{
super(value, unit);
}
/**
* Construct FloatElectricalCharge scalar.
* @param value Scalar from which to construct this instance
*/
public FloatElectricalCharge(final FloatElectricalCharge value)
{
super(value);
}
/**
* Construct FloatElectricalCharge scalar using a double value.
* @param value double value
* @param unit unit for the resulting float value
*/
public FloatElectricalCharge(final double value, final ElectricalChargeUnit unit)
{
super((float) value, unit);
}
/** {@inheritDoc} */
@Override
public final FloatElectricalCharge instantiateRel(final float value, final ElectricalChargeUnit unit)
{
return new FloatElectricalCharge(value, unit);
}
/**
* Construct FloatElectricalCharge scalar.
* @param value float value in SI units
* @return the new scalar with the SI value
*/
public static final FloatElectricalCharge createSI(final float value)
{
return new FloatElectricalCharge(value, ElectricalChargeUnit.SI);
}
/**
* 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 FloatElectricalCharge interpolate(final FloatElectricalCharge zero, final FloatElectricalCharge one,
final float ratio)
{
return new FloatElectricalCharge(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getUnit()) * ratio,
zero.getUnit());
}
/**
* Return the maximum value of two relative scalars.
* @param r1 the first scalar
* @param r2 the second scalar
* @return the maximum value of two relative scalars
*/
public static FloatElectricalCharge max(final FloatElectricalCharge r1, final FloatElectricalCharge r2)
{
return (r1.gt(r2)) ? r1 : r2;
}
/**
* Return the maximum value of more than two relative scalars.
* @param r1 the first scalar
* @param r2 the second scalar
* @param rn the other scalars
* @return the maximum value of more than two relative scalars
*/
public static FloatElectricalCharge max(final FloatElectricalCharge r1, final FloatElectricalCharge r2,
final FloatElectricalCharge... rn)
{
FloatElectricalCharge maxr = (r1.gt(r2)) ? r1 : r2;
for (FloatElectricalCharge r : rn)
{
if (r.gt(maxr))
{
maxr = r;
}
}
return maxr;
}
/**
* Return the minimum value of two relative scalars.
* @param r1 the first scalar
* @param r2 the second scalar
* @return the minimum value of two relative scalars
*/
public static FloatElectricalCharge min(final FloatElectricalCharge r1, final FloatElectricalCharge r2)
{
return (r1.lt(r2)) ? r1 : r2;
}
/**
* Return the minimum value of more than two relative scalars.
* @param r1 the first scalar
* @param r2 the second scalar
* @param rn the other scalars
* @return the minimum value of more than two relative scalars
*/
public static FloatElectricalCharge min(final FloatElectricalCharge r1, final FloatElectricalCharge r2,
final FloatElectricalCharge... rn)
{
FloatElectricalCharge minr = (r1.lt(r2)) ? r1 : r2;
for (FloatElectricalCharge r : rn)
{
if (r.lt(minr))
{
minr = r;
}
}
return minr;
}
/**
* Returns a FloatElectricalCharge 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 FloatElectricalCharge
* @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 FloatElectricalCharge valueOf(final String text) throws IllegalArgumentException
{
if (text == null || text.length() == 0)
{
throw new IllegalArgumentException("Error parsing FloatElectricalCharge -- 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 (ElectricalChargeUnit unit : Unit.getUnits(ElectricalChargeUnit.class))
{
if (unit.getDefaultLocaleTextualRepresentations().contains(unitString))
{
float f = Float.parseFloat(valueString);
return new FloatElectricalCharge(f, unit);
}
}
}
catch (Exception exception)
{
throw new IllegalArgumentException("Error parsing FloatElectricalCharge from " + text, exception);
}
}
throw new IllegalArgumentException("Error parsing FloatElectricalCharge from " + text);
}
/**
* Calculate the division of FloatElectricalCharge and FloatElectricalCharge, which results in a FloatDimensionless scalar.
* @param v FloatElectricalCharge scalar
* @return FloatDimensionless scalar as a division of FloatElectricalCharge and FloatElectricalCharge
*/
public final FloatDimensionless divideBy(final FloatElectricalCharge v)
{
return new FloatDimensionless(this.si / v.si, DimensionlessUnit.SI);
}
/**
* Calculate the division of FloatElectricalCharge and FloatDuration, which results in a FloatElectricalCurrent scalar.
* @param v FloatElectricalCharge scalar
* @return FloatElectricalCurrent scalar as a division of FloatElectricalCharge and FloatDuration
*/
public final FloatElectricalCurrent divideBy(final FloatDuration v)
{
return new FloatElectricalCurrent(this.si / v.si, ElectricalCurrentUnit.SI);
}
/**
* Calculate the division of FloatElectricalCharge and FloatElectricalCurrent, which results in a FloatDuration scalar.
* @param v FloatElectricalCharge scalar
* @return FloatDuration scalar as a division of FloatElectricalCharge and FloatElectricalCurrent
*/
public final FloatDuration divideBy(final FloatElectricalCurrent v)
{
return new FloatDuration(this.si / v.si, DurationUnit.SI);
}
}