public class Direction extends TypedDoubleScalarAbs<AngleUnit,Direction,Angle>
DoubleScalar.Abs<AngleUnit> value = new DoubleScalar.Abs<AngleUnit>(100.0, AngleUnit.SI);we can now write:
Direction value = new Direction(100.0, AngleUnit.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 OpenTrafficSim License.
$LastChangedDate: 2015-12-22 04:32:39 +0100 (Tue, 22 Dec 2015) $, @version $Revision: 180 $, by $Author: averbraeck $,
initial version Sep 1, 2015
DoubleScalar.Abs<U extends Unit<U>>, DoubleScalar.Rel<U extends Unit<U>>| Modifier and Type | Field and Description |
|---|---|
static Direction |
ZERO
constant with value zero.
|
si| Constructor and Description |
|---|
Direction(Direction value)
Construct Direction scalar.
|
Direction(double value,
AngleUnit unit)
Construct Direction scalar.
|
| Modifier and Type | Method and Description |
|---|---|
protected Direction |
instantiateTypeAbs(double value,
AngleUnit unit)
Construct a new Absolute Immutable DoubleScalar of the right type.
|
protected Angle |
instantiateTypeRel(double value,
AngleUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static Direction |
interpolate(Direction zero,
Direction one,
double ratio)
Interpolate between two values.
|
static Direction |
max(Direction a1,
Direction a2)
Return the maximum value of two absolute scalars.
|
static Direction |
max(Direction a1,
Direction a2,
Direction... an)
Return the maximum value of more than two absolute scalars.
|
static Direction |
min(Direction a1,
Direction a2)
Return the minimum value of two absolute scalars.
|
static Direction |
min(Direction a1,
Direction a2,
Direction... an)
Return the minimum value of more than two absolute scalars.
|
ceil, floor, minus, minus, plus, rint, round, toRelcompareTo, divideBy, eq, ge, getSI, gt, le, lt, minus, minus, multiplyBy, 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 static final Direction ZERO
public Direction(double value,
AngleUnit unit)
value - double valueunit - unit for the double valuepublic Direction(Direction value)
value - Scalar from which to construct this instanceprotected final Direction instantiateTypeAbs(double value, AngleUnit unit)
instantiateTypeAbs in class TypedDoubleScalarAbs<AngleUnit,Direction,Angle>value - the double valueunit - the unitprotected final Angle instantiateTypeRel(double value, AngleUnit unit)
instantiateTypeRel in class TypedDoubleScalarAbs<AngleUnit,Direction,Angle>value - the double valueunit - the unitpublic static Direction interpolate(Direction zero, Direction one, double ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static Direction max(Direction a1, Direction a2)
a1 - the first scalara2 - the second scalarpublic static Direction max(Direction a1, Direction a2, Direction... an)
a1 - the first scalara2 - the second scalaran - the other scalarspublic static Direction min(Direction a1, Direction a2)
a1 - the first scalara2 - the second scalarCopyright © 2015–2016 Delft University of Technology. All rights reserved.