Package org.opengis.metadata.quality
Interface QuantitativeResult
-
- All Superinterfaces:
Result
@UML(identifier="DQ_QuantitativeResult", specification=ISO_19115, version=2003) public interface QuantitativeResult extends Result
Information about the value (or set of values) obtained from applying a data quality measure.- Since:
- 2.0
-
-
Method Summary
Modifier and Type Method Description default InternationalStringgetErrorStatistic()Statistical method used to determine the value, ornullif none.Collection<? extends Record>getValues()Quantitative value or values, content determined by the evaluation procedure used.default RecordTypegetValueType()Value type for reporting a data quality result, ornullif none.Unit<?>getValueUnit()Value unit for reporting a data quality result, ornullif none.
-
-
-
Method Detail
-
getValues
@UML(identifier="value", obligation=MANDATORY, specification=ISO_19115, version=2003) Collection<? extends Record> getValues()
Quantitative value or values, content determined by the evaluation procedure used.- Returns:
- quantitative value or values.
-
getValueType
@UML(identifier="valueType", obligation=OPTIONAL, specification=ISO_19115, version=2003) default RecordType getValueType()
Value type for reporting a data quality result, ornullif none.- Returns:
- value type for reporting a data quality result, or
null.
-
getValueUnit
@UML(identifier="valueUnit", obligation=MANDATORY, specification=ISO_19115, version=2003) Unit<?> getValueUnit()
Value unit for reporting a data quality result, ornullif none.- Returns:
- value unit for reporting a data quality result, or
null.
-
getErrorStatistic
@UML(identifier="errorStatistic", obligation=OPTIONAL, specification=ISO_19115, version=2003) default InternationalString getErrorStatistic()
Statistical method used to determine the value, ornullif none.- Returns:
- statistical method used to determine the value, or
null.
-
-