All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.datastream.schemas.mp_fields.PERIODINTERVAL Maven / Gradle / Ivy

There is a newer version: 12.1.0-21
Show newest version

package net.datastream.schemas.mp_fields;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.openapplications.oagis_segments.DATETIME;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="INTERVAL" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="UOM">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <enumeration value="D"/>
 *               <enumeration value="W"/>
 *               <enumeration value="M"/>
 *               <enumeration value="Q"/>
 *               <enumeration value="Y"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element ref="{http://schemas.datastream.net/MP_fields}DUEDATE" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}NESTINGBUFFER" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "interval", "uom", "duedate", "nestingbuffer" }) @XmlRootElement(name = "PERIODINTERVAL") public class PERIODINTERVAL { @XmlElement(name = "INTERVAL") protected long interval; @XmlElement(name = "UOM", required = true) protected String uom; @XmlElement(name = "DUEDATE") protected DATETIME duedate; @XmlElement(name = "NESTINGBUFFER") protected NESTINGBUFFER_Type nestingbuffer; /** * Gets the value of the interval property. * */ public long getINTERVAL() { return interval; } /** * Sets the value of the interval property. * */ public void setINTERVAL(long value) { this.interval = value; } /** * Gets the value of the uom property. * * @return * possible object is * {@link String } * */ public String getUOM() { return uom; } /** * Sets the value of the uom property. * * @param value * allowed object is * {@link String } * */ public void setUOM(String value) { this.uom = value; } /** * Gets the value of the duedate property. * * @return * possible object is * {@link DATETIME } * */ public DATETIME getDUEDATE() { return duedate; } /** * Sets the value of the duedate property. * * @param value * allowed object is * {@link DATETIME } * */ public void setDUEDATE(DATETIME value) { this.duedate = value; } /** * Gets the value of the nestingbuffer property. * * @return * possible object is * {@link NESTINGBUFFER_Type } * */ public NESTINGBUFFER_Type getNESTINGBUFFER() { return nestingbuffer; } /** * Sets the value of the nestingbuffer property. * * @param value * allowed object is * {@link NESTINGBUFFER_Type } * */ public void setNESTINGBUFFER(NESTINGBUFFER_Type value) { this.nestingbuffer = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy