org.opengis.temporal.TemporalOrder 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.
/*
* 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 org.opengis.annotation.UML;
/**
* Provides an operation for determining the position of this {@linkplain TemporalPrimitive temporal
* primitive} relative to another {@linkplain TemporalPrimitive temporal primitive}.
*
* @author Stephane Fellah (Image Matters)
* @author Alexander Petkov
* @todo The javadoc suggests that this interface should extends some kind of {@link
* TemporalPrimitive}.
*/
@UML(identifier = "TM_Order", specification = ISO_19108)
public interface TemporalOrder {
/** Determines the position of this primitive relative to another primitive. */
@UML(identifier = "relativePosition", obligation = MANDATORY, specification = ISO_19108)
RelativePosition relativePosition(TemporalPrimitive other);
}