org.opengis.metadata.quality.ConformanceResult 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.quality;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import org.opengis.annotation.UML;
import org.opengis.metadata.citation.Citation;
import org.opengis.util.InternationalString;
/**
* Information about the outcome of evaluating the obtained value (or set of values) against a
* specified acceptable conformance quality level.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@UML(identifier = "DQ_ConformanceResult", specification = ISO_19115)
public interface ConformanceResult extends Result {
/**
* Citation of product specification or user requirement against which data is being evaluated.
*
* @return Citation of product specification or user requirement.
*/
@UML(identifier = "specification", obligation = MANDATORY, specification = ISO_19115)
Citation getSpecification();
/**
* Explanation of the meaning of conformance for this result.
*
* @return Explanation of the meaning of conformance.
*/
@UML(identifier = "explanation", obligation = MANDATORY, specification = ISO_19115)
InternationalString getExplanation();
/**
* Indication of the conformance result.
*
* @return Indication of the conformance result.
*/
@UML(identifier = "pass", obligation = MANDATORY, specification = ISO_19115)
boolean pass();
}