Package lumis.portal.bigdata.query
Class Distance
- java.lang.Object
-
- lumis.portal.bigdata.query.Distance
-
@StableMinor(version="16.0", sinceVersion="9.0") public class Distance extends java.lang.Object
Represents a distance with an amount and adistance unit
.- Since:
- 9.0.0
- Version:
- $Revision: 25808 $ $Date: 2023-07-04 15:20:55 -0300 (Tue, 04 Jul 2023) $
-
-
Constructor Summary
Constructors Constructor Description Distance(double amount, DistanceUnit unit)
Creates a new distance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getAmount()
Returns the amount.DistanceUnit
getUnit()
Returns the unit.java.lang.String
toString()
-
-
-
Constructor Detail
-
Distance
public Distance(double amount, DistanceUnit unit)
Creates a new distance.- Parameters:
amount
- the amount of the distance. Must be a non-negative non-infinity number.unit
- the distance unit. Must not benull
.- Since:
- 9.0.0
-
-
Method Detail
-
getAmount
public double getAmount()
Returns the amount.- Returns:
- the amount
- Since:
- 9.0.0
-
getUnit
public DistanceUnit getUnit()
Returns the unit.- Returns:
- the unit
- Since:
- 9.0.0
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-