org.opengis.metadata.quality.QuantitativeResult 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 java.util.Collection;
import javax.measure.Unit;
import org.opengis.annotation.UML;
import org.opengis.util.InternationalString;
import org.opengis.util.Record;
import org.opengis.util.RecordType;
/**
* Information about the value (or set of values) obtained from applying a data quality measure.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@UML(identifier = "DQ_QuantitativeResult", specification = ISO_19115)
public interface QuantitativeResult extends Result {
/**
* Quantitative value or values, content determined by the evaluation procedure used.
*
* @return Quantitative value or values.
*/
@UML(identifier = "value", obligation = MANDATORY, specification = ISO_19115)
Collection extends Record> getValues();
/**
* Value type for reporting a data quality result, or {@code null} if none.
*
* @return Value type for reporting a data quality result, or {@code null}.
*/
@UML(identifier = "valueType", obligation = OPTIONAL, specification = ISO_19115)
RecordType getValueType();
/**
* Value unit for reporting a data quality result, or {@code null} if none.
*
* @return Value unit for reporting a data quality result, or {@code null}.
*/
@UML(identifier = "valueUnit", obligation = MANDATORY, specification = ISO_19115)
Unit> getValueUnit();
/**
* Statistical method used to determine the value, or {@code null} if none.
*
* @return Statistical method used to determine the value, or {@code null}.
*/
@UML(identifier = "errorStatistic", obligation = OPTIONAL, specification = ISO_19115)
InternationalString getErrorStatistic();
}