Interface DoubleScalarInterface.RelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends DoubleScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends DoubleScalarInterface.RelWithAbs<AU,A,RU,R>>
-
- Type Parameters:
AU- the absolute unit belonging to the absoluteunitA- the absolute scalar belonging to the relative scalarRU- the absolute unit belonging to the relative unitR- the relative scalar belonging to the absolute scalar
- All Superinterfaces:
Cloneable,Comparable<R>,DoubleScalarInterface<RU,R>,Relative<RU,R>,Scalar<RU,R>,Scalar.Rel<RU,R>,Scalar.RelWithAbs<AU,A,RU,R>,Serializable,Value<RU,R>,ValueFunctions<RU,R>
- All Known Implementing Classes:
AbstractDoubleScalarRelWithAbs,Angle,Duration,Length,Temperature
- Enclosing interface:
- DoubleScalarInterface<U extends Unit<U>,S extends DoubleScalarInterface<U,S>>
public static interface DoubleScalarInterface.RelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends DoubleScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends DoubleScalarInterface.RelWithAbs<AU,A,RU,R>> extends DoubleScalarInterface<RU,R>, Scalar.RelWithAbs<AU,A,RU,R>
Additional methods for Relative Scalar that has a corresponding Absolute Scalar. An example is the relative scalar Length that has a corresponding absolute scalar Position.Copyright (c) 2019-2022 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.- Author:
- Alexander Verbraeck
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.djunits.value.vdouble.scalar.base.DoubleScalarInterface
DoubleScalarInterface.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends DoubleScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends DoubleScalarInterface.RelWithAbs<AU,A,RU,R>>, DoubleScalarInterface.Rel<U extends Unit<U>,R extends DoubleScalarInterface.Rel<U,R>>, DoubleScalarInterface.RelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends DoubleScalarInterface.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends DoubleScalarInterface.RelWithAbs<AU,A,RU,R>>
-
Nested classes/interfaces inherited from interface org.djunits.value.base.Scalar
Scalar.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends Scalar.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends Scalar.RelWithAbs<AU,A,RU,R>>, Scalar.Rel<U extends Unit<U>,R extends Scalar.Rel<U,R>>, Scalar.RelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends Scalar.Abs<AU,A,RU,R>,RU extends Unit<RU>,R extends Scalar.RelWithAbs<AU,A,RU,R>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AinstantiateAbs(double value, AU unit)Construct a new Absolute Immutable DoubleScalar of the right type.RinstantiateRel(double value, RU unit)Construct a new Relative Immutable DoubleScalar of the right type.-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface org.djunits.value.vdouble.scalar.base.DoubleScalarInterface
getInUnit, getInUnit, getSI
-
Methods inherited from interface org.djunits.value.base.Scalar
eq, eq0, ge, ge0, gt, gt0, le, le0, lt, lt0, ne, ne0, toDisplayString, toDisplayString, toTextualString, toTextualString
-
Methods inherited from interface org.djunits.value.base.Scalar.Rel
minus, plus
-
Methods inherited from interface org.djunits.value.base.Scalar.RelWithAbs
plus
-
Methods inherited from interface org.djunits.value.Value
getDisplayUnit, isAbsolute, isRelative, setDisplayUnit, toString, toString, toString, toString
-
-
-
-
Method Detail
-
instantiateRel
R instantiateRel(double value, RU unit)
Construct a new Relative Immutable DoubleScalar of the right type. Each extending class must implement this method.- Parameters:
value- double; the double valueunit- RU; the unit- Returns:
- R a new relative instance of the DoubleScalar of the right type
-
instantiateAbs
A instantiateAbs(double value, AU unit)
Construct a new Absolute Immutable DoubleScalar of the right type. Each extending class must implement this method.- Parameters:
value- double; the double valueunit- AU; the absolute unit- Returns:
- A a new absolute instance of the DoubleScalar of the right type
-
-