blob: 6b67edddf3fd6872ec62dcdbd07ee4c25d44fab4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sis.metadata.iso.quality;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import org.opengis.util.TypeName;
import org.opengis.util.InternationalString;
import org.apache.sis.xml.Namespaces;
// Specific to the geoapi-3.1 and geoapi-4.0 branches:
import org.opengis.metadata.quality.Description;
import org.opengis.metadata.quality.BasicMeasure;
/**
* Data quality basic measure.
* See the {@link BasicMeasure} GeoAPI interface for more details.
* The following property is mandatory in a well-formed metadata according ISO 19157:
*
* <div class="preformat">{@code DQM_BasicMeasure}
* {@code   ├─name……………………} Name of the data quality basic measure applied to the data.
* {@code   ├─definition……} Definition of the data quality basic measure.
* {@code   ├─example……………} Illustration of the use of a data quality measure.
* {@code   └─valueType………} Value type for the result of the basic measure (shall be one of the data types defined in ISO/TS 19103:2005).</div>
*
* <h2>Limitations</h2>
* <ul>
* <li>Instances of this class are not synchronized for multi-threading.
* Synchronization, if needed, is caller's responsibility.</li>
* <li>Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases.
* Serialization support is appropriate for short term storage or RMI between applications running the
* same version of Apache SIS. For long term storage, use {@link org.apache.sis.xml.XML} instead.</li>
* </ul>
*
* @author Alexis Gaillard (Geomatys)
* @author Martin Desruisseaux (Geomatys)
* @version 1.4
* @since 1.3
*/
@XmlType(name = "DQM_BasicMeasure_Type", namespace = Namespaces.DQM, propOrder = {
"name",
"definition",
"example",
"valueType"
})
@XmlRootElement(name = "DQM_BasicMeasure", namespace = Namespaces.DQM)
public class DefaultBasicMeasure extends ISOMetadata implements BasicMeasure {
/**
* Serial number for inter-operability with different versions.
*/
private static final long serialVersionUID = -1665043206717367320L;
/**
* Name of the data quality basic measure applied to the data.
*/
@SuppressWarnings("serial")
private InternationalString name;
/**
* Definition of the data quality basic measure.
*/
@SuppressWarnings("serial")
private InternationalString definition;
/**
* Illustration of the use of a data quality measure.
*/
@SuppressWarnings("serial")
private Description example;
/**
* Value type for the result of the basic measure.
*/
@SuppressWarnings("serial")
private TypeName valueType;
/**
* Constructs an initially empty basic measure.
*/
public DefaultBasicMeasure() {
}
/**
* Constructs a new instance initialized with the values from the specified metadata object.
* This is a <em>shallow</em> copy constructor, because the other metadata contained in the
* given object are not recursively copied.
*
* @param object the metadata to copy values from, or {@code null} if none.
*
* @see #castOrCopy(BasicMeasure)
*/
public DefaultBasicMeasure(final BasicMeasure object) {
super(object);
if (object != null) {
name = object.getName();
definition = object.getDefinition();
example = object.getExample();
valueType = object.getValueType();
}
}
/**
* Returns a SIS metadata implementation with the values of the given arbitrary implementation.
* This method performs the first applicable action in the following choices:
*
* <ul>
* <li>If the given object is {@code null}, then this method returns {@code null}.</li>
* <li>Otherwise if the given object is already an instance of
* {@code BasicMeasure}, then it is returned unchanged.</li>
* <li>Otherwise a new {@code BasicMeasure} instance is created using the
* {@linkplain #DefaultBasicMeasure(BasicMeasure) copy constructor} and returned.
* Note that this is a <em>shallow</em> copy operation, because the other
* metadata contained in the given object are not recursively copied.</li>
* </ul>
*
* @param object the object to get as a SIS implementation, or {@code null} if none.
* @return a SIS implementation containing the values of the given object (may be the
* given object itself), or {@code null} if the argument was null.
*/
public static DefaultBasicMeasure castOrCopy(final BasicMeasure object) {
if (object == null || object instanceof DefaultBasicMeasure) {
return (DefaultBasicMeasure) object;
}
return new DefaultBasicMeasure(object);
}
/**
* Returns the name of the data quality basic measure.
*
* @return name of the data quality basic measure.
*/
@Override
@XmlElement(name = "name", required = true)
public InternationalString getName() {
return name;
}
/**
* Sets the name of the data quality basic measure.
*
* @param newValue the new basic measure name.
*/
public void setName(final InternationalString newValue) {
checkWritePermission(name);
name = newValue;
}
/**
* Returns the definition of the data quality basic measure.
*
* @return definition of the data quality basic measure.
*/
@Override
@XmlElement(name = "definition", required = true)
public InternationalString getDefinition() {
return definition;
}
/**
* Sets the definition of the data quality basic measure.
*
* @param newValue the new basic measure definition.
*/
public void setDefinition(final InternationalString newValue) {
checkWritePermission(definition);
definition = newValue;
}
/**
* Returns the illustration of the use of a data quality measure.
*
* @return usage example, or {@code null} if none.
*/
@Override
@XmlElement(name = "example")
public Description getExample() {
return example;
}
/**
* Sets the illustration of the use of a data quality measure.
*
* @param newValues the new basic measure example.
*/
public void setExample(final Description newValues) {
checkWritePermission(example);
example = newValues;
}
/**
* Returns the value type for the result of the basic measure.
*
* @return value type of the result for the basic measure.
*/
@Override
@XmlElement(name = "valueType", required = true)
public TypeName getValueType() {
return valueType;
}
/**
* Sets the value type for the result of the basic measure.
*
* @param newValue the new basic measure value type.
*/
public void setValueType(final TypeName newValue) {
checkWritePermission(valueType);
valueType = newValue;
}
}