public class Position extends AbstractDoubleScalarAbs<PositionUnit,Position,LengthUnit,Length>
DoubleScalar.Abs<PositionUnit> value = new DoubleScalar.Abs<PositionUnit>(100.0, PositionUnit.SI);we can now write:
Position value = new Position(100.0, PositionUnit.BASE);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-2019 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
| Modifier and Type | Field and Description |
|---|---|
static Position |
ZERO
constant with value zero.
|
siNUMBER_PATTERN| Constructor and Description |
|---|
Position(double value,
PositionUnit unit)
Construct Position scalar.
|
Position(Position value)
Construct Position scalar.
|
| Modifier and Type | Method and Description |
|---|---|
static Position |
createSI(double value)
Construct %TypeAbsl% scalar.
|
Position |
instantiateAbs(double value,
PositionUnit unit)
Construct a new Absolute Immutable DoubleScalar of the right type.
|
Length |
instantiateRel(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.
|
static Position |
valueOf(String text)
Returns a Position representation of a textual representation of a value with a unit.
|
ceil, divideBy, floor, minus, minus, multiplyBy, 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, setDisplayUnit, stringOf, stringOfDefaultLocale, textualStringOf, textualStringOfDefaultLocalebyteValue, shortValueclone, finalize, getClass, notify, notifyAll, wait, wait, waitDIV, MULT, POWpublic static final Position ZERO
public Position(double value,
PositionUnit unit)
value - double valueunit - unit for the double valuepublic Position(Position value)
value - Scalar from which to construct this instancepublic final Position instantiateAbs(double value, PositionUnit unit)
instantiateAbs in class AbstractDoubleScalarAbs<PositionUnit,Position,LengthUnit,Length>value - double; the double valueunit - AU; the unitpublic final Length instantiateRel(double value, LengthUnit unit)
instantiateRel in class AbstractDoubleScalarAbs<PositionUnit,Position,LengthUnit,Length>value - double; the double valueunit - RU; the unitpublic static final Position createSI(double value)
value - double value in SI unitspublic 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 scalarpublic static Position min(Position a1, Position a2, Position... an)
a1 - the first scalara2 - the second scalaran - the other scalarspublic static Position valueOf(String text) throws IllegalArgumentException
text - String; the textual representation to parse into a PositionIllegalArgumentException - when the text cannot be parsedCopyright © 2015–2019 Delft University of Technology. All rights reserved.