public class MoneyPerLength extends TypedDoubleScalarRel<MoneyPerLengthUnit,MoneyPerLength>
DoubleScalar.Rel<MoneyPerLengthUnit> value = new DoubleScalar.Rel<MoneyPerLengthUnit>(100.0, MoneyPerLengthUnit.SI);we can now write:
MoneyPerLength value = new MoneyPerLength(100.0, MoneyPerLengthUnit.SI);The compiler will automatically recognize which units belong to which quantity, and whether the quantity type and the unit used are compatible.
Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
$LastChangedDate: 2016-05-28 14:25:52 +0200 (Sat, 28 May 2016) $, @version $Revision: 202 $, by $Author: averbraeck $,
initial version Sep 5, 2015
DoubleScalar.Abs<U extends Unit<U>>, DoubleScalar.Rel<U extends Unit<U>>si| Constructor and Description |
|---|
MoneyPerLength(double value,
MoneyPerLengthUnit unit)
Construct MoneyPerLength scalar.
|
MoneyPerLength(MoneyPerLength value)
Construct MoneyPerLength scalar.
|
| Modifier and Type | Method and Description |
|---|---|
Money |
divideBy(LinearDensity v)
Calculate the division of MoneyPerLength and LinearDensity, which results in a Money scalar.
|
Dimensionless |
divideBy(MoneyPerLength v)
Calculate the division of MoneyPerLength and MoneyPerLength, which results in a Dimensionless scalar.
|
protected MoneyPerLength |
instantiateTypeRel(double value,
MoneyPerLengthUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static MoneyPerLength |
interpolate(MoneyPerLength zero,
MoneyPerLength one,
double ratio)
Interpolate between two values.
|
static MoneyPerLength |
max(MoneyPerLength r1,
MoneyPerLength r2)
Return the maximum value of two monetary scalars.
|
static MoneyPerLength |
max(MoneyPerLength r1,
MoneyPerLength r2,
MoneyPerLength... rn)
Return the maximum value of more than two monetary scalars.
|
static MoneyPerLength |
min(MoneyPerLength r1,
MoneyPerLength r2)
Return the minimum value of two monetary scalars.
|
static MoneyPerLength |
min(MoneyPerLength r1,
MoneyPerLength r2,
MoneyPerLength... rn)
Return the minimum value of more than two monetary scalars.
|
Money |
multiplyBy(Length v)
Calculate the multiplication of MoneyPerLength and Length, which results in a Money scalar.
|
abs, ceil, divideBy, floor, minus, multiplyBy, plus, rint, roundcompareTo, eq, ge, getSI, gt, le, lt, minus, ne, plusdivide, divide, doubleValue, equals, floatValue, getInUnit, getInUnit, hashCode, interpolate, interpolate, intValue, longValue, minus, minus, minus, multiply, multiply, plus, plus, plus, toString, toString, toString, toStringexpressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelativebyteValue, shortValueclone, finalize, getClass, notify, notifyAll, wait, wait, waitDIV, MULT, POWpublic MoneyPerLength(double value,
MoneyPerLengthUnit unit)
value - double valueunit - unit for the double valuepublic MoneyPerLength(MoneyPerLength value)
value - Scalar from which to construct this instanceprotected final MoneyPerLength instantiateTypeRel(double value, MoneyPerLengthUnit unit)
instantiateTypeRel in class TypedDoubleScalarRel<MoneyPerLengthUnit,MoneyPerLength>value - the double valueunit - the unitpublic static MoneyPerLength interpolate(MoneyPerLength zero, MoneyPerLength one, double ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static MoneyPerLength max(MoneyPerLength r1, MoneyPerLength r2)
r1 - the first scalarr2 - the second scalarpublic static MoneyPerLength max(MoneyPerLength r1, MoneyPerLength r2, MoneyPerLength... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic static MoneyPerLength min(MoneyPerLength r1, MoneyPerLength r2)
r1 - the first scalarr2 - the second scalarpublic static MoneyPerLength min(MoneyPerLength r1, MoneyPerLength r2, MoneyPerLength... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic final Dimensionless divideBy(MoneyPerLength v)
v - MoneyPerLength scalarpublic final Money multiplyBy(Length v)
v - MoneyPerLength scalarpublic final Money divideBy(LinearDensity v)
v - MoneyPerLength scalarCopyright © 2015–2016 Delft University of Technology. All rights reserved.