no.kith.xmlstds.RTO Maven / Gradle / Ivy
/*
* XML Type: RTO
* Namespace: http://www.kith.no/xmlstds
* Java type: no.kith.xmlstds.RTO
*
* Automatically generated - do not modify.
*/
package no.kith.xmlstds;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* An XML RTO(@http://www.kith.no/xmlstds).
*
* This is a complex type.
*/
public interface RTO extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(io.github.mjhaugsdal.system.m922.x20131015.TypeSystemHolder.typeSystem, "rto24e8type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "NUM" element
*/
java.math.BigInteger getNUM();
/**
* Gets (as xml) the "NUM" element
*/
org.apache.xmlbeans.XmlInteger xgetNUM();
/**
* True if has "NUM" element
*/
boolean isSetNUM();
/**
* Sets the "NUM" element
*/
void setNUM(java.math.BigInteger num);
/**
* Sets (as xml) the "NUM" element
*/
void xsetNUM(org.apache.xmlbeans.XmlInteger num);
/**
* Unsets the "NUM" element
*/
void unsetNUM();
/**
* Gets the "DENOM" element
*/
java.math.BigInteger getDENOM();
/**
* Gets (as xml) the "DENOM" element
*/
org.apache.xmlbeans.XmlInteger xgetDENOM();
/**
* True if has "DENOM" element
*/
boolean isSetDENOM();
/**
* Sets the "DENOM" element
*/
void setDENOM(java.math.BigInteger denom);
/**
* Sets (as xml) the "DENOM" element
*/
void xsetDENOM(org.apache.xmlbeans.XmlInteger denom);
/**
* Unsets the "DENOM" element
*/
void unsetDENOM();
}