Package org.opengis.metadata.quality
Interface QuantitativeResult
-
- All Superinterfaces:
Result
@UML(identifier="DQ_QuantitativeResult", specification=ISO_19115) public interface QuantitativeResult extends Result
Information about the value (or set of values) obtained from applying a data quality measure.- Since:
- 2.0
- Version:
- 3.0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InternationalStringgetErrorStatistic()Statistical method used to determine the value, ornullif none.java.util.Collection<? extends Record>getValues()Quantitative value or values, content determined by the evaluation procedure used.RecordTypegetValueType()Value type for reporting a data quality result, ornullif none.javax.measure.Unit<?>getValueUnit()Value unit for reporting a data quality result, ornullif none.
-
-
-
Method Detail
-
getValues
@UML(identifier="value", obligation=MANDATORY, specification=ISO_19115) java.util.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) 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) javax.measure.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) InternationalString getErrorStatistic()
Statistical method used to determine the value, ornullif none.- Returns:
- Statistical method used to determine the value, or
null.
-
-