Package org.geotools.api.temporal
Interface OrdinalEra
-
- All Known Implementing Classes:
DefaultOrdinalEra
public interface OrdinalEra
Provides a reference to the ordinal era in which the instant occurs.- Author:
- Alexander Petkov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Date
getBeginning()
The beginning at which the ordinal era began if it's known.Collection<OrdinalEra>
getComposition()
Ordinal eras that subdivide this ordinal era.Date
getEnd()
The end at which the ordinal era began if it's known.InternationalString
getName()
The unique name of the ordinal era within the ordinal reference system.
-
-
-
Method Detail
-
getName
InternationalString getName()
The unique name of the ordinal era within the ordinal reference system.
-
getBeginning
Date getBeginning()
The beginning at which the ordinal era began if it's known.
-
getEnd
Date getEnd()
The end at which the ordinal era began if it's known.
-
getComposition
Collection<OrdinalEra> getComposition()
Ordinal eras that subdivide this ordinal era.
-
-