Uses of Class
org.osgi.util.measurement.Measurement
-
Packages that use Measurement Package Description org.osgi.util.measurement org.osgi.util.position -
-
Uses of Measurement in org.osgi.util.measurement
Methods in org.osgi.util.measurement that return Measurement Modifier and Type Method Description MeasurementMeasurement. add(double d)Returns a newMeasurementobject that is the sum of this object added to the specified value.MeasurementMeasurement. add(double d, Unit u)Returns a newMeasurementobject that is the sum of this object added to the specified value.MeasurementMeasurement. add(Measurement m)Returns a newMeasurementobject that is the sum of this object added to the specified object.MeasurementMeasurement. div(double d)Returns a newMeasurementobject that is the quotient of this object divided by the specified value.MeasurementMeasurement. div(double d, Unit u)Returns a newMeasurementobject that is the quotient of this object divided by the specified value.MeasurementMeasurement. div(Measurement m)Returns a newMeasurementobject that is the quotient of this object divided by the specified object.MeasurementMeasurement. mul(double d)Returns a newMeasurementobject that is the product of this object multiplied by the specified value.MeasurementMeasurement. mul(double d, Unit u)Returns a newMeasurementobject that is the product of this object multiplied by the specified value.MeasurementMeasurement. mul(Measurement m)Returns a newMeasurementobject that is the product of this object multiplied by the specified object.MeasurementMeasurement. sub(double d)Returns a newMeasurementobject that is the subtraction of the specified value from this object.MeasurementMeasurement. sub(double d, Unit u)Returns a newMeasurementobject that is the subtraction of the specified value from this object.MeasurementMeasurement. sub(Measurement m)Returns a newMeasurementobject that is the subtraction of the specified object from this object.Methods in org.osgi.util.measurement with parameters of type Measurement Modifier and Type Method Description MeasurementMeasurement. add(Measurement m)Returns a newMeasurementobject that is the sum of this object added to the specified object.MeasurementMeasurement. div(Measurement m)Returns a newMeasurementobject that is the quotient of this object divided by the specified object.MeasurementMeasurement. mul(Measurement m)Returns a newMeasurementobject that is the product of this object multiplied by the specified object.MeasurementMeasurement. sub(Measurement m)Returns a newMeasurementobject that is the subtraction of the specified object from this object. -
Uses of Measurement in org.osgi.util.position
Methods in org.osgi.util.position that return Measurement Modifier and Type Method Description MeasurementPosition. getAltitude()Returns the altitude of this position in meters.MeasurementPosition. getLatitude()Returns the latitude of this position in radians.MeasurementPosition. getLongitude()Returns the longitude of this position in radians.MeasurementPosition. getSpeed()Returns the ground speed of this position in meters per second.MeasurementPosition. getTrack()Returns the track of this position in radians as a compass heading.Constructors in org.osgi.util.position with parameters of type Measurement Constructor Description Position(Measurement lat, Measurement lon, Measurement alt, Measurement speed, Measurement track)Constructs aPositionobject with the given values.
-