public class MoneyPerArea extends AbstractDoubleScalarRel<MoneyPerAreaUnit,MoneyPerArea>
DoubleScalar.Rel<MoneyPerAreaUnit> value = new DoubleScalar.Rel<MoneyPerAreaUnit>(100.0, MoneyPerAreaUnit.SI);we can now write:
MoneyPerArea value = new MoneyPerArea(100.0, MoneyPerAreaUnit.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-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
$LastChangedDate: 2018-01-28 03:17:44 +0100 (Sun, 28 Jan 2018) $, @version $Revision: 256 $, by $Author: averbraeck $,
initial version Sep 5, 2015
si| Constructor and Description |
|---|
MoneyPerArea(double value,
MoneyPerAreaUnit unit)
Construct MoneyPerArea scalar.
|
MoneyPerArea(MoneyPerArea value)
Construct MoneyPerArea scalar.
|
| Modifier and Type | Method and Description |
|---|---|
Dimensionless |
divideBy(MoneyPerArea v)
Calculate the division of MoneyPerArea and MoneyPerArea, which results in a Dimensionless scalar.
|
MoneyPerArea |
instantiateRel(double value,
MoneyPerAreaUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static MoneyPerArea |
interpolate(MoneyPerArea zero,
MoneyPerArea one,
double ratio)
Interpolate between two values.
|
static MoneyPerArea |
max(MoneyPerArea r1,
MoneyPerArea r2)
Return the maximum value of two monetary scalars.
|
static MoneyPerArea |
max(MoneyPerArea r1,
MoneyPerArea r2,
MoneyPerArea... rn)
Return the maximum value of more than two monetary scalars.
|
static MoneyPerArea |
min(MoneyPerArea r1,
MoneyPerArea r2)
Return the minimum value of two monetary scalars.
|
static MoneyPerArea |
min(MoneyPerArea r1,
MoneyPerArea r2,
MoneyPerArea... rn)
Return the minimum value of more than two monetary scalars.
|
Money |
multiplyBy(Area v)
Calculate the multiplication of MoneyPerArea and Area, which results in a Money scalar.
|
abs, ceil, divideBy, floor, minus, multiplyBy, neg, plus, rint, roundcompareTo, doubleValue, eq, eq0, equals, floatValue, ge, ge0, getInUnit, getInUnit, getSI, gt, gt0, hashCode, intValue, le, le0, longValue, lt, lt0, ne, ne0, toString, toString, toString, toStringexpressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelative, setDisplayUnitbyteValue, shortValueclone, finalize, getClass, notify, notifyAll, wait, wait, waitDIV, MULT, POWpublic MoneyPerArea(double value,
MoneyPerAreaUnit unit)
value - double valueunit - unit for the double valuepublic MoneyPerArea(MoneyPerArea value)
value - Scalar from which to construct this instancepublic final MoneyPerArea instantiateRel(double value, MoneyPerAreaUnit unit)
instantiateRel in class AbstractDoubleScalarRel<MoneyPerAreaUnit,MoneyPerArea>value - the double valueunit - the unitpublic static MoneyPerArea interpolate(MoneyPerArea zero, MoneyPerArea one, double ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static MoneyPerArea max(MoneyPerArea r1, MoneyPerArea r2)
r1 - the first scalarr2 - the second scalarpublic static MoneyPerArea max(MoneyPerArea r1, MoneyPerArea r2, MoneyPerArea... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic static MoneyPerArea min(MoneyPerArea r1, MoneyPerArea r2)
r1 - the first scalarr2 - the second scalarpublic static MoneyPerArea min(MoneyPerArea r1, MoneyPerArea r2, MoneyPerArea... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic final Dimensionless divideBy(MoneyPerArea v)
v - MoneyPerArea scalarCopyright © 2015–2018 Delft University of Technology. All rights reserved.