org.opengis.metadata.spatial.GeometricObjects 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) 2004-2005, Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.metadata.spatial;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import org.opengis.annotation.UML;
/**
* Number of objects, listed by geometric object type, used in the dataset.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 2.0
*/
@UML(identifier = "MD_GeometricObjects", specification = ISO_19115)
public interface GeometricObjects {
/**
* Name of point and vector spatial objects used to locate zero-, one-, and twodimensional
* spatial locations in the dataset.
*
* @return Name of spatial objects used to locate spatial locations in the dataset.
*/
@UML(identifier = "geometricObjectType", obligation = MANDATORY, specification = ISO_19115)
GeometricObjectType getGeometricObjectType();
/**
* Total number of the point or vector object type occurring in the dataset.
*
* @return Total number of the point or vector object type, or {@code null}.
*/
@UML(identifier = "geometricObjectCount", obligation = OPTIONAL, specification = ISO_19115)
Integer getGeometricObjectCount();
}