blob: 06789440500c7d18d6cf2c9226d39a1f3de9fcd6 [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.xml.bind.metadata.code;
import jakarta.xml.bind.annotation.XmlElement;
import org.opengis.metadata.quality.EvaluationMethodType;
import org.apache.sis.xml.Namespaces;
import org.apache.sis.xml.bind.cat.CodeListAdapter;
import org.apache.sis.xml.bind.cat.CodeListUID;
/**
* JAXB adapter for {@link EvaluationMethodType}
* in order to wrap the value in an XML element as specified by ISO 19115-3 standard.
* See package documentation for more information about the handling of {@code CodeList} in ISO 19115-3.
*
* @author Cédric Briançon (Geomatys)
*/
public final class DQ_EvaluationMethodTypeCode
extends CodeListAdapter<DQ_EvaluationMethodTypeCode, EvaluationMethodType>
{
/**
* Empty constructor for JAXB only.
*/
public DQ_EvaluationMethodTypeCode() {
}
/**
* Creates a new adapter for the given value.
*/
private DQ_EvaluationMethodTypeCode(final CodeListUID value) {
super(value);
}
/**
* {@inheritDoc}
*
* @return the wrapper for the code list value.
*/
@Override
protected DQ_EvaluationMethodTypeCode wrap(final CodeListUID value) {
return new DQ_EvaluationMethodTypeCode(value);
}
/**
* {@inheritDoc}
*
* @return the code list class.
*/
@Override
protected Class<EvaluationMethodType> getCodeListClass() {
return EvaluationMethodType.class;
}
/**
* Invoked by JAXB on marshalling.
*
* @return the value to be marshalled.
*/
@Override
@XmlElement(name = "DQ_EvaluationMethodTypeCode", namespace = Namespaces.MDQ)
public CodeListUID getElement() {
return identifier;
}
/**
* Invoked by JAXB on unmarshalling.
*
* @param value the unmarshalled value.
*/
public void setElement(final CodeListUID value) {
identifier = value;
}
}