Module org.opengis.geoapi
Package org.opengis.metadata.content
Interface FeatureCatalogueDescription
- All Superinterfaces:
ContentInformation
@UML(identifier="MD_FeatureCatalogueDescription",
specification=ISO_19115)
public interface FeatureCatalogueDescription
extends ContentInformation
Information identifying the feature catalogue.
- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionCollection<? extends Citation>
Complete bibliographic reference to one or more external feature catalogues.Collection<? extends GenericName>
Subset of feature types from cited feature catalogue occurring in dataset.Language(s) used within the catalogue.Indication of whether or not the cited feature catalogue complies with ISO 19110.boolean
Indication of whether or not the feature catalogue is included with the dataset.
-
Method Details
-
isCompliant
@UML(identifier="complianceCode", obligation=OPTIONAL, specification=ISO_19115) Boolean isCompliant()Indication of whether or not the cited feature catalogue complies with ISO 19110. This value is optional, and therefore may be null.- Returns:
- Whether or not the cited feature catalogue complies with ISO 19110, or
null
.
-
getLanguages
@UML(identifier="language", obligation=OPTIONAL, specification=ISO_19115) Collection<Locale> getLanguages()Language(s) used within the catalogue.- Returns:
- Language(s) used within the catalogue.
-
isIncludedWithDataset
@UML(identifier="includedWithDataset", obligation=MANDATORY, specification=ISO_19115) boolean isIncludedWithDataset()Indication of whether or not the feature catalogue is included with the dataset.- Returns:
- whether or not the feature catalogue is included with the dataset.
-
getFeatureTypes
@UML(identifier="featureTypes", obligation=OPTIONAL, specification=ISO_19115) Collection<? extends GenericName> getFeatureTypes()Subset of feature types from cited feature catalogue occurring in dataset.- Returns:
- Subset of feature types occurring in dataset.
-
getFeatureCatalogueCitations
@UML(identifier="featureCatalogueCitation", obligation=MANDATORY, specification=ISO_19115) Collection<? extends Citation> getFeatureCatalogueCitations()Complete bibliographic reference to one or more external feature catalogues.- Returns:
- Bibliographic reference to one or more external feature catalogues.
-