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

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


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;


/**
 * 

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <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; /** * Obtient la valeur de la propriété interval. * */ public long getINTERVAL() { return interval; } /** * Définit la valeur de la propriété interval. * */ public void setINTERVAL(long value) { this.interval = value; } /** * Obtient la valeur de la propriété uom. * * @return * possible object is * {@link String } * */ public String getUOM() { return uom; } /** * Définit la valeur de la propriété uom. * * @param value * allowed object is * {@link String } * */ public void setUOM(String value) { this.uom = value; } /** * Obtient la valeur de la propriété duedate. * * @return * possible object is * {@link DATETIME } * */ public DATETIME getDUEDATE() { return duedate; } /** * Définit la valeur de la propriété duedate. * * @param value * allowed object is * {@link DATETIME } * */ public void setDUEDATE(DATETIME value) { this.duedate = value; } /** * Obtient la valeur de la propriété nestingbuffer. * * @return * possible object is * {@link NESTINGBUFFER_Type } * */ public NESTINGBUFFER_Type getNESTINGBUFFER() { return nestingbuffer; } /** * Définit la valeur de la propriété nestingbuffer. * * @param value * allowed object is * {@link NESTINGBUFFER_Type } * */ public void setNESTINGBUFFER(NESTINGBUFFER_Type value) { this.nestingbuffer = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy