001/*
002 *    GeoAPI - Java interfaces for OGC/ISO standards
003 *    Copyright © 2004-2024 Open Geospatial Consortium, Inc.
004 *    http://www.geoapi.org
005 *
006 *    Licensed under the Apache License, Version 2.0 (the "License");
007 *    you may not use this file except in compliance with the License.
008 *    You may obtain a copy of the License at
009 *
010 *        http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *    Unless required by applicable law or agreed to in writing, software
013 *    distributed under the License is distributed on an "AS IS" BASIS,
014 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 *    See the License for the specific language governing permissions and
016 *    limitations under the License.
017 */
018package org.opengis.metadata.quality;
019
020import java.util.Collection;
021import javax.measure.Unit;
022import org.opengis.util.InternationalString;
023import org.opengis.util.Record;
024import org.opengis.util.RecordType;
025import org.opengis.annotation.UML;
026
027import static org.opengis.annotation.Obligation.*;
028import static org.opengis.annotation.Specification.*;
029
030
031/**
032 * The values or information about the value(s) (or set of values) obtained from applying a data quality measure.
033 * Quantitative result may be a single value or multiple values, depending on the {@linkplain #getValueType() value type}
034 * and {@linkplain Measure#getValueStructure() value structure} defined in the description of the measure applied.
035 *
036 * @author  Martin Desruisseaux (IRD)
037 * @author  Cory Horner (Refractions Research)
038 * @author  Alexis Gaillard (Geomatys)
039 * @version 3.1
040 * @since   2.0
041 */
042@UML(identifier="DQ_QuantitativeResult", specification=ISO_19157)
043public interface QuantitativeResult extends Result {
044    /**
045     * Quantitative value or values, content determined by the evaluation procedure used.
046     * This is determined accordingly with the value type and value structure defined for the measure.
047     *
048     * @return quantitative value or values.
049     *
050     * @see #getValueType()
051     * @see #getValueUnit()
052     */
053    @UML(identifier="value", obligation=MANDATORY, specification=ISO_19157)
054    Collection<? extends Record> getValues();
055
056    /**
057     * Value unit for reporting a data quality result.
058     *
059     * @return value unit for reporting a data quality result, or {@code null}.
060     */
061    @UML(identifier="valueUnit", obligation=OPTIONAL, specification=ISO_19157)
062    default Unit<?> getValueUnit() {
063        return null;
064    }
065
066    /**
067     * Value type for reporting a data quality result.
068     * It describes how the {@linkplain Measure#getValueType() value type} and
069     * {@linkplain Measure#getValueStructure() value structure} defined in the
070     * measure are implemented to provide the value of the quantitative result.
071     *
072     * <div class="note"><b>Example:</b>
073     * Within the description of the <i>misclassification matrix</i> measure,
074     * the {@linkplain Measure#getValueType() value type} may be an integer and
075     * the {@linkplain Measure#getValueStructure() value structure} is matrix (<var>n</var> × <var>n</var>).
076     * The {@link #getValues() value} attribute of the {@code QuantitativeResult} provides the result matrix itself.
077     * This attribute {@code valueRecordType} provides the description of the matrix type.
078     * If another encoding is used, the attribute {@code valueRecordType} will change to provide the description
079     * of the type matrix in the other encoding, and the implementation of the attribute value will change accordingly,
080     * but the value itself will not change.</div>
081     *
082     * @return value type for reporting a data quality result, or {@code null} if none.
083     *
084     * @see #getValues()
085     * @see Measure#getValueType()
086     *
087     * @departure historic
088     *   Renamed from {@code "valueRecordType"} to {@code "valueType"} for compatibility with ISO 19115:2003
089     *   and because the return object type does not need to be repeated in Java method name.
090     */
091    @UML(identifier="valueRecordType", obligation=OPTIONAL, specification=ISO_19157)
092    default RecordType getValueType() {
093        return null;
094    }
095
096    /**
097     * Statistical method used to determine the value,
098     *
099     * @return statistical method used to determine the value.
100     *
101     * @deprecated Removed from ISO 19157:2013.
102     */
103    @Deprecated(since="3.1")
104    @UML(identifier="errorStatistic", obligation=OPTIONAL, specification=ISO_19115, version=2003)
105    default InternationalString getErrorStatistic() {
106        return null;
107    }
108}