public class FloatTime extends AbstractFloatScalarAbs<TimeUnit,FloatTime,DurationUnit,FloatDuration>
FloatScalar.Abs<TimeUnit> value = new FloatScalar.Abs<TimeUnit>(100.0, TimeUnit.SI);we can now write:
FloatTime value = new FloatTime(100.0, TimeUnit.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-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands.
All rights reserved.
BSD-style license. See OpenTrafficSim License.
$LastChangedDate: 2019-03-03 00:53:50 +0100 (Sun, 03 Mar 2019) $, @version $Revision: 349 $, by $Author: averbraeck $,
initial version Sep 1, 2015
| Modifier and Type | Field and Description |
|---|---|
static FloatTime |
ZERO
constant with value zero.
|
siNUMBER_PATTERN| Constructor and Description |
|---|
FloatTime(double value,
TimeUnit unit)
Construct FloatTime scalar using a double value.
|
FloatTime(FloatTime value)
Construct FloatTime scalar.
|
FloatTime(float value,
TimeUnit unit)
Construct FloatTime scalar.
|
| Modifier and Type | Method and Description |
|---|---|
static FloatTime |
createSI(float value)
Construct FloatTime scalar.
|
FloatTime |
instantiateAbs(float value,
TimeUnit unit)
Construct a new Absolute Immutable FloatScalar of the right type.
|
FloatDuration |
instantiateRel(float value,
DurationUnit unit)
Construct a new Relative Immutable FloatScalar of the right type.
|
static FloatTime |
interpolate(FloatTime zero,
FloatTime one,
float ratio)
Interpolate between two values.
|
static FloatTime |
max(FloatTime a1,
FloatTime a2)
Return the maximum value of two absolute scalars.
|
static FloatTime |
max(FloatTime a1,
FloatTime a2,
FloatTime... an)
Return the maximum value of more than two absolute scalars.
|
static FloatTime |
min(FloatTime a1,
FloatTime a2)
Return the minimum value of two absolute scalars.
|
static FloatTime |
min(FloatTime a1,
FloatTime a2,
FloatTime... an)
Return the minimum value of more than two absolute scalars.
|
static FloatTime |
valueOf(String text)
Returns a FloatTime 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 FloatTime ZERO
public FloatTime(float value,
TimeUnit unit)
value - float valueunit - unit for the float valuepublic FloatTime(double value,
TimeUnit unit)
value - double valueunit - unit for the resulting float valuepublic FloatTime(FloatTime value)
value - Scalar from which to construct this instancepublic final FloatTime instantiateAbs(float value, TimeUnit unit)
instantiateAbs in class AbstractFloatScalarAbs<TimeUnit,FloatTime,DurationUnit,FloatDuration>value - float; the float valueunit - AU; the unitpublic final FloatDuration instantiateRel(float value, DurationUnit unit)
instantiateRel in class AbstractFloatScalarAbs<TimeUnit,FloatTime,DurationUnit,FloatDuration>value - float; the float valueunit - RU; the unitpublic static final FloatTime createSI(float value)
value - float value in BASE unitspublic static FloatTime interpolate(FloatTime zero, FloatTime one, float ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static FloatTime max(FloatTime a1, FloatTime a2)
a1 - the first scalara2 - the second scalarpublic static FloatTime max(FloatTime a1, FloatTime a2, FloatTime... an)
a1 - the first scalara2 - the second scalaran - the other scalarspublic static FloatTime min(FloatTime a1, FloatTime a2)
a1 - the first scalara2 - the second scalarpublic static FloatTime min(FloatTime a1, FloatTime a2, FloatTime... an)
a1 - the first scalara2 - the second scalaran - the other scalarspublic static FloatTime valueOf(String text) throws IllegalArgumentException
text - String; the textual representation to parse into a FloatTimeIllegalArgumentException - when the text cannot be parsedCopyright © 2015–2019 Delft University of Technology. All rights reserved.