no.kith.xmlstds.ED Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.03.16 at 08:56:03 PM CET
//
package no.kith.xmlstds;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for ED complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ED">
* <complexContent>
* <extension base="{http://www.kith.no/xmlstds}base">
* <attribute ref="{http://www.kith.no/xmlstds}MT"/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ED")
@XmlSeeAlso({
TN.class
})
public class ED
extends Base
{
@XmlAttribute(name = "MT", namespace = "http://www.kith.no/xmlstds")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
private final String mt;
public ED(final String mt) {
this.mt = mt;
}
/**
* Used by JAX-B
*
*/
protected ED() {
this.mt = null;
}
/**
* Gets the value of the mt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMT() {
return mt;
}
public static ED.EDBuilder EDBuilder() {
return new ED.EDBuilder();
}
public static class EDBuilder {
private String mt;
public ED.EDBuilder withMt(final String mt) {
this.mt = mt;
return this;
}
public ED build() {
return new ED(mt);
}
}
}