/* * 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.content; import java.util.Collection; import java.util.Locale; import org.opengis.util.GenericName; import org.opengis.metadata.citation.Citation; import org.opengis.annotation.UML; import static org.opengis.annotation.Obligation.*; import static org.opengis.annotation.Specification.*; /** * Information identifying the feature catalogue. * * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/library/opengis/src/main/java/org/opengis/metadata/content/FeatureCatalogueDescription.java $ * @version <A HREF="http://www.opengeospatial.org/standards/as#01-111">ISO 19115</A> * @author Martin Desruisseaux (IRD) * @since GeoAPI 2.0 */ @UML(identifier="MD_FeatureCatalogueDescription", specification=ISO_19115) public interface FeatureCatalogueDescription extends ContentInformation { /** * Indication of whether or not the cited feature catalogue complies with ISO 19110. * This value is optional, and therefore may be null. * * @return Whether or not the cited feature catalogue complies with ISO 19110, or {@code null}. */ @UML(identifier="complianceCode", obligation=OPTIONAL, specification=ISO_19115) Boolean isCompliant(); /** * Language(s) used within the catalogue. * * @return Language(s) used within the catalogue. */ @UML(identifier="language", obligation=OPTIONAL, specification=ISO_19115) Collection<Locale> getLanguages(); /** * Indication of whether or not the feature catalogue is included with the dataset. * * @return whether or not the feature catalogue is included with the dataset. */ @UML(identifier="includedWithDataset", obligation=MANDATORY, specification=ISO_19115) boolean isIncludedWithDataset(); /** * Subset of feature types from cited feature catalogue occurring in dataset. * * @return Subset of feature types occurring in dataset. */ @UML(identifier="featureTypes", obligation=OPTIONAL, specification=ISO_19115) Collection<? extends GenericName> getFeatureTypes(); /** * Complete bibliographic reference to one or more external feature catalogues. * * @return Bibliographic reference to one or more external feature catalogues. */ @UML(identifier="featureCatalogueCitation", obligation=MANDATORY, specification=ISO_19115) Collection<? extends Citation> getFeatureCatalogueCitations(); }