org.opengis.metadata.citation.Series 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.citation;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import org.opengis.annotation.UML;
import org.opengis.util.InternationalString;
/**
* Information about the series, or aggregate dataset, to which a dataset belongs.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 1.0
*/
@UML(identifier = "CI_Series", specification = ISO_19115)
public interface Series {
/**
* Name of the series, or aggregate dataset, of which the dataset is a part. Returns {@code
* null} if none.
*
* @return The name of the series or aggregate dataset.
*/
@UML(identifier = "name", obligation = OPTIONAL, specification = ISO_19115)
InternationalString getName();
/**
* Information identifying the issue of the series.
*
* @return Information identifying the issue of the series.
*/
@UML(identifier = "issueIdentification", obligation = OPTIONAL, specification = ISO_19115)
String getIssueIdentification();
/**
* Details on which pages of the publication the article was published.
*
* @return Details on which pages of the publication the article was published.
*/
@UML(identifier = "page", obligation = OPTIONAL, specification = ISO_19115)
String getPage();
}