Package org.geotools.api.temporal
Interface ClockTime
-
- All Superinterfaces:
TemporalPosition
- All Known Subinterfaces:
DateAndTime
- All Known Implementing Classes:
DefaultClockTime
,DefaultDateAndTime
public interface ClockTime extends TemporalPosition
A data type that shall be used to identify a temporal position within a day. Because temporal position cannot by itself completely identify a single temporal position; it shall be used with calendar date for that purpose. It may be also used to identify the time of occurrence of an event that recurs every day.- Author:
- Stephane Fellah (Image Matters), Alexander Petkov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Number[]
getClockTime()
A sequence of numbers with a structure similar to that ofCalendarDate
.-
Methods inherited from interface TemporalPosition
getIndeterminatePosition
-
-
-
-
Method Detail
-
getClockTime
Number[] getClockTime()
A sequence of numbers with a structure similar to that ofCalendarDate
. The first number integer identifies a specific instance of the unit used at the highest level of the clock hierarchy, the second number identifies a specific instance of the unit used at the next lower level, and so on. All but the last number in the sequence shall be integers; the last number may be integer or real.
-
-