Package com.esri.arcgisruntime.mapping
Class TimeValue
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.TimeValue
-
public final class TimeValue extends Object
Defines a time offset or interval.- Since:
- 100.3.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDuration()
Gets the length of the time value in the TimeValue's unit.TimeUnit
getTimeUnit()
Gets the unit of the time value.
-
-
-
Constructor Detail
-
TimeValue
public TimeValue(double duration, TimeUnit timeUnit)
Creates a new time value instance.- Parameters:
duration
- the duration of the time offset/intervaltimeUnit
- the unit of the time offset/interval- Throws:
IllegalArgumentException
- if timeUnit is null- Since:
- 100.3.0
-
-
Method Detail
-
getDuration
public double getDuration()
Gets the length of the time value in the TimeValue's unit.- Returns:
- the time length of the time interval/offset
- Since:
- 100.3.0
- See Also:
getTimeUnit()
-
getTimeUnit
public TimeUnit getTimeUnit()
Gets the unit of the time value.- Returns:
- the unit of the time value.
- Since:
- 100.3.0
-
-