Uses of Class
org.osgi.util.measurement.Measurement
Packages that use Measurement
-
Uses of Measurement in org.osgi.util.measurement
Methods in org.osgi.util.measurement that return MeasurementModifier and TypeMethodDescriptionMeasurement.add
(double d) Returns a newMeasurement
object that is the sum of this object added to the specified value.Returns a newMeasurement
object that is the sum of this object added to the specified value.Measurement.add
(Measurement m) Returns a newMeasurement
object that is the sum of this object added to the specified object.Measurement.div
(double d) Returns a newMeasurement
object that is the quotient of this object divided by the specified value.Returns a newMeasurement
object that is the quotient of this object divided by the specified value.Measurement.div
(Measurement m) Returns a newMeasurement
object that is the quotient of this object divided by the specified object.Measurement.mul
(double d) Returns a newMeasurement
object that is the product of this object multiplied by the specified value.Returns a newMeasurement
object that is the product of this object multiplied by the specified value.Measurement.mul
(Measurement m) Returns a newMeasurement
object that is the product of this object multiplied by the specified object.Measurement.sub
(double d) Returns a newMeasurement
object that is the subtraction of the specified value from this object.Returns a newMeasurement
object that is the subtraction of the specified value from this object.Measurement.sub
(Measurement m) Returns a newMeasurement
object that is the subtraction of the specified object from this object.Methods in org.osgi.util.measurement with parameters of type MeasurementModifier and TypeMethodDescriptionMeasurement.add
(Measurement m) Returns a newMeasurement
object that is the sum of this object added to the specified object.Measurement.div
(Measurement m) Returns a newMeasurement
object that is the quotient of this object divided by the specified object.Measurement.mul
(Measurement m) Returns a newMeasurement
object that is the product of this object multiplied by the specified object.Measurement.sub
(Measurement m) Returns a newMeasurement
object 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 MeasurementModifier and TypeMethodDescriptionPosition.getAltitude()
Returns the altitude of this position in meters.Position.getLatitude()
Returns the latitude of this position in radians.Position.getLongitude()
Returns the longitude of this position in radians.Position.getSpeed()
Returns the ground speed of this position in meters per second.Position.getTrack()
Returns the track of this position in radians as a compass heading.Constructors in org.osgi.util.position with parameters of type MeasurementModifierConstructorDescriptionPosition
(Measurement lat, Measurement lon, Measurement alt, Measurement speed, Measurement track) Constructs aPosition
object with the given values.