public class Position extends TypedDoubleScalarAbs<LengthUnit,Position,Length>
DoubleScalar.Abs<LengthUnit> value = new DoubleScalar.Abs<LengthUnit>(100.0, LengthUnit.SI);we can now write:
Position value = new Position(100.0, LengthUnit.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 Position |
ZERO
constant with value zero.
|
si| Constructor and Description |
|---|
Position(double value,
LengthUnit unit)
Construct Position scalar.
|
Position(Position value)
Construct Position scalar.
|
| Modifier and Type | Method and Description |
|---|---|
protected Position |
instantiateTypeAbs(double value,
LengthUnit unit)
Construct a new Absolute Immutable DoubleScalar of the right type.
|
protected Length |
instantiateTypeRel(double value,
LengthUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static Position |
interpolate(Position zero,
Position one,
double ratio)
Interpolate between two values.
|
static Position |
max(Position a1,
Position a2)
Return the maximum value of two absolute scalars.
|
static Position |
max(Position a1,
Position a2,
Position... an)
Return the maximum value of more than two absolute scalars.
|
static Position |
min(Position a1,
Position a2)
Return the minimum value of two absolute scalars.
|
static Position |
min(Position a1,
Position a2,
Position... 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 Position ZERO
public Position(double value,
LengthUnit unit)
value - double valueunit - unit for the double valuepublic Position(Position value)
value - Scalar from which to construct this instanceprotected final Position instantiateTypeAbs(double value, LengthUnit unit)
instantiateTypeAbs in class TypedDoubleScalarAbs<LengthUnit,Position,Length>value - the double valueunit - the unitprotected final Length instantiateTypeRel(double value, LengthUnit unit)
instantiateTypeRel in class TypedDoubleScalarAbs<LengthUnit,Position,Length>value - the double valueunit - the unitpublic static Position interpolate(Position zero, Position one, double ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static Position max(Position a1, Position a2)
a1 - the first scalara2 - the second scalarpublic static Position max(Position a1, Position a2, Position... an)
a1 - the first scalara2 - the second scalaran - the other scalarspublic static Position min(Position a1, Position a2)
a1 - the first scalara2 - the second scalarCopyright © 2015–2016 Delft University of Technology. All rights reserved.