| org.geotools.metadata.iso.quality.ResultImpl org.geotools.metadata.iso.quality.QuantitativeResultImpl
QuantitativeResultImpl | public class QuantitativeResultImpl extends ResultImpl implements QuantitativeResult(Code) | | Information about the value (or set of values) obtained from applying a data quality measure.
version: $Id: QuantitativeResultImpl.java 25189 2007-04-17 13:23:47Z desruisseaux $ author: Martin Desruisseaux author: Touraïvane since: 2.1 |
Constructor Summary | |
public | QuantitativeResultImpl() Constructs an initially empty quantitative result. | public | QuantitativeResultImpl(QuantitativeResult source) Constructs a metadata entity initialized with the values from the specified metadata. | public | QuantitativeResultImpl(double[] values) Constructs a quantitative result initialized to the specified value. |
Method Summary | |
public InternationalString | getErrorStatistic() Statistical method used to determine the value, or
null if none. | public RecordType | getValueType() Value type for reporting a data quality result, or
null if none. | public Unit | getValueUnit() Value unit for reporting a data quality result, or
null if none. | public synchronized Collection | getValues() Quantitative value or values, content determined by the evaluation procedure used. | public synchronized void | setErrorStatistic(InternationalString newValue) Set the statistical method used to determine the value, or
null if none. | public synchronized void | setValueType(RecordType newValue) Set the value type for reporting a data quality result, or
null if none. | public synchronized void | setValueUnit(Unit newValue) Set the value unit for reporting a data quality result, or
null if none. | public synchronized void | setValues(double[] newValues) Set the quantitative value or values, content determined by the evaluation procedure used. | public synchronized void | setValues(Collection newValues) Set the quantitative value or values, content determined by the evaluation procedure used. |
QuantitativeResultImpl | public QuantitativeResultImpl()(Code) | | Constructs an initially empty quantitative result.
|
QuantitativeResultImpl | public QuantitativeResultImpl(QuantitativeResult source)(Code) | | Constructs a metadata entity initialized with the values from the specified metadata.
since: 2.4 |
QuantitativeResultImpl | public QuantitativeResultImpl(double[] values)(Code) | | Constructs a quantitative result initialized to the specified value.
|
getErrorStatistic | public InternationalString getErrorStatistic()(Code) | | Statistical method used to determine the value, or
null if none.
|
getValueType | public RecordType getValueType()(Code) | | Value type for reporting a data quality result, or
null if none.
|
getValueUnit | public Unit getValueUnit()(Code) | | Value unit for reporting a data quality result, or
null if none.
|
getValues | public synchronized Collection getValues()(Code) | | Quantitative value or values, content determined by the evaluation procedure used.
|
setErrorStatistic | public synchronized void setErrorStatistic(InternationalString newValue)(Code) | | Set the statistical method used to determine the value, or
null if none.
|
setValueType | public synchronized void setValueType(RecordType newValue)(Code) | | Set the value type for reporting a data quality result, or
null if none.
|
setValueUnit | public synchronized void setValueUnit(Unit newValue)(Code) | | Set the value unit for reporting a data quality result, or
null if none.
|
setValues | public synchronized void setValues(double[] newValues)(Code) | | Set the quantitative value or values, content determined by the evaluation procedure used.
|
setValues | public synchronized void setValues(Collection newValues)(Code) | | Set the quantitative value or values, content determined by the evaluation procedure used.
since: 2.4 |
|
|