Interface QuantitativeResult
- All Superinterfaces:
Result
- All Known Implementing Classes:
QuantitativeResultImpl
Information about the value (or set of values) obtained from applying a data quality measure.
- Since:
- GeoAPI 2.0
- Author:
- Martin Desruisseaux (IRD), Cory Horner (Refractions Research)
-
Method Summary
Modifier and TypeMethodDescriptionStatistical method used to determine the value, ornull
if none.Collection<? extends Record>
Quantitative value or values, content determined by the evaluation procedure used.Value type for reporting a data quality result, ornull
if none.Unit<?>
Value unit for reporting a data quality result, ornull
if none.
-
Method Details
-
getValues
Collection<? extends Record> getValues()Quantitative value or values, content determined by the evaluation procedure used.- Returns:
- Quantitative value or values.
-
getValueType
RecordType getValueType()Value type for reporting a data quality result, ornull
if none.- Returns:
- Value type for reporting a data quality result, or
null
.
-
getValueUnit
Unit<?> getValueUnit()Value unit for reporting a data quality result, ornull
if none.- Returns:
- Value unit for reporting a data quality result, or
null
.
-
getErrorStatistic
InternationalString getErrorStatistic()Statistical method used to determine the value, ornull
if none.- Returns:
- Statistical method used to determine the value, or
null
.
-