public class MoneyPerEnergy extends TypedDoubleScalarRel<MoneyPerEnergyUnit,MoneyPerEnergy>
DoubleScalar.Rel<MoneyPerEnergyUnit> value = new DoubleScalar.Rel<MoneyPerEnergyUnit>(100.0, MoneyPerEnergyUnit.SI);we can now write:
MoneyPerEnergy value = new MoneyPerEnergy(100.0, MoneyPerEnergyUnit.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 |
|---|
MoneyPerEnergy(double value,
MoneyPerEnergyUnit unit)
Construct MoneyPerEnergy scalar.
|
MoneyPerEnergy(MoneyPerEnergy value)
Construct MoneyPerEnergy scalar.
|
| Modifier and Type | Method and Description |
|---|---|
Dimensionless |
divideBy(MoneyPerEnergy v)
Calculate the division of MoneyPerEnergy and MoneyPerEnergy, which results in a Dimensionless scalar.
|
protected MoneyPerEnergy |
instantiateTypeRel(double value,
MoneyPerEnergyUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static MoneyPerEnergy |
interpolate(MoneyPerEnergy zero,
MoneyPerEnergy one,
double ratio)
Interpolate between two values.
|
static MoneyPerEnergy |
max(MoneyPerEnergy r1,
MoneyPerEnergy r2)
Return the maximum value of two monetary scalars.
|
static MoneyPerEnergy |
max(MoneyPerEnergy r1,
MoneyPerEnergy r2,
MoneyPerEnergy... rn)
Return the maximum value of more than two monetary scalars.
|
static MoneyPerEnergy |
min(MoneyPerEnergy r1,
MoneyPerEnergy r2)
Return the minimum value of two monetary scalars.
|
static MoneyPerEnergy |
min(MoneyPerEnergy r1,
MoneyPerEnergy r2,
MoneyPerEnergy... rn)
Return the minimum value of more than two monetary scalars.
|
Money |
multiplyBy(Energy v)
Calculate the multiplication of MoneyPerEnergy and Energy, 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 MoneyPerEnergy(double value,
MoneyPerEnergyUnit unit)
value - double valueunit - unit for the double valuepublic MoneyPerEnergy(MoneyPerEnergy value)
value - Scalar from which to construct this instanceprotected final MoneyPerEnergy instantiateTypeRel(double value, MoneyPerEnergyUnit unit)
instantiateTypeRel in class TypedDoubleScalarRel<MoneyPerEnergyUnit,MoneyPerEnergy>value - the double valueunit - the unitpublic static MoneyPerEnergy interpolate(MoneyPerEnergy zero, MoneyPerEnergy one, double ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static MoneyPerEnergy max(MoneyPerEnergy r1, MoneyPerEnergy r2)
r1 - the first scalarr2 - the second scalarpublic static MoneyPerEnergy max(MoneyPerEnergy r1, MoneyPerEnergy r2, MoneyPerEnergy... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic static MoneyPerEnergy min(MoneyPerEnergy r1, MoneyPerEnergy r2)
r1 - the first scalarr2 - the second scalarpublic static MoneyPerEnergy min(MoneyPerEnergy r1, MoneyPerEnergy r2, MoneyPerEnergy... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic final Dimensionless divideBy(MoneyPerEnergy v)
v - MoneyPerEnergy scalarCopyright © 2015–2016 Delft University of Technology. All rights reserved.