Interface QuantitativeResult
- 
- All Superinterfaces:
- Result
 - All Known Implementing Classes:
- QuantitativeResultImpl
 
 public interface QuantitativeResult extends Result 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.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- 
getValuesCollection<? extends Record> getValues() Quantitative value or values, content determined by the evaluation procedure used.- Returns:
- Quantitative value or values.
 
 - 
getValueTypeRecordType getValueType() Value type for reporting a data quality result, ornullif none.- Returns:
- Value type for reporting a data quality result, or null.
 
 - 
getValueUnitUnit<?> getValueUnit() Value unit for reporting a data quality result, ornullif none.- Returns:
- Value unit for reporting a data quality result, or null.
 
 - 
getErrorStatisticInternationalString getErrorStatistic() Statistical method used to determine the value, ornullif none.- Returns:
- Statistical method used to determine the value, or null.
 
 
- 
 
-