org.opengis.temporal.OrdinalReferenceSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-opengis Show documentation
Show all versions of gt-opengis Show documentation
Standard interfaces implemented throughout the library.
The newest version!
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2005, Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.temporal;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.Collection;
import org.opengis.annotation.UML;
/**
* Provides only the attributes inherited from temporal reference system.
*
* @author Alexander Petkov
* @todo The javadoc doesn't seem accurate.
* @todo Missing UML annotations.
*/
public interface OrdinalReferenceSystem extends TemporalReferenceSystem {
/**
* Get the set of ordinal eras of which this ordinal reference system consists of.
*
* @return A hierarchically-structured collection of ordinal eras.
* @todo What the structure is exactly?
*/
@UML(identifier = "structure", obligation = MANDATORY, specification = ISO_19108)
Collection getOrdinalEraSequence();
}