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

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

There is a newer version: 12.1-4
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;


/**
 * 

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 ref="{http://schemas.datastream.net/MP_fields}ENTITYID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}PRINT" minOccurs="0"/>
 *         <element name="MAXVALUE" type="{http://schemas.datastream.net/MP_fields}CODE80_Type" minOccurs="0"/>
 *         <element name="MINVALUE" type="{http://schemas.datastream.net/MP_fields}CODE80_Type" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}UOMCODE" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}USERDEFINEDFIELDLOVSETTINGS" minOccurs="0"/>
 *         <element name="DATETYPE" type="{http://schemas.datastream.net/MP_fields}CODE4_Type" minOccurs="0"/>
 *         <element name="NUMTYPE" type="{http://schemas.datastream.net/MP_fields}CODE4_Type" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}CURRENCYCODE" minOccurs="0"/>
 *         <element name="ENABLEFORADDONS" type="{http://schemas.datastream.net/MP_fields}FLAG_Type"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "entityid", "print", "maxvalue", "minvalue", "uomcode", "userdefinedfieldlovsettings", "datetype", "numtype", "currencycode", "enableforaddons" }) @XmlRootElement(name = "USERDEFINEDFIELDINFO") public class USERDEFINEDFIELDINFO { @XmlElement(name = "ENTITYID", required = true) protected ENTITYID_Type entityid; @XmlElement(name = "PRINT") protected String print; @XmlElement(name = "MAXVALUE") protected String maxvalue; @XmlElement(name = "MINVALUE") protected String minvalue; @XmlElement(name = "UOMCODE") protected String uomcode; @XmlElement(name = "USERDEFINEDFIELDLOVSETTINGS") protected USERDEFINEDFIELDLOVSETTINGS userdefinedfieldlovsettings; @XmlElement(name = "DATETYPE") protected String datetype; @XmlElement(name = "NUMTYPE") protected String numtype; @XmlElement(name = "CURRENCYCODE") protected String currencycode; @XmlElement(name = "ENABLEFORADDONS", required = true) protected String enableforaddons; /** * Gets the value of the entityid property. * * @return * possible object is * {@link ENTITYID_Type } * */ public ENTITYID_Type getENTITYID() { return entityid; } /** * Sets the value of the entityid property. * * @param value * allowed object is * {@link ENTITYID_Type } * */ public void setENTITYID(ENTITYID_Type value) { this.entityid = value; } /** * Gets the value of the print property. * * @return * possible object is * {@link String } * */ public String getPRINT() { return print; } /** * Sets the value of the print property. * * @param value * allowed object is * {@link String } * */ public void setPRINT(String value) { this.print = value; } /** * Gets the value of the maxvalue property. * * @return * possible object is * {@link String } * */ public String getMAXVALUE() { return maxvalue; } /** * Sets the value of the maxvalue property. * * @param value * allowed object is * {@link String } * */ public void setMAXVALUE(String value) { this.maxvalue = value; } /** * Gets the value of the minvalue property. * * @return * possible object is * {@link String } * */ public String getMINVALUE() { return minvalue; } /** * Sets the value of the minvalue property. * * @param value * allowed object is * {@link String } * */ public void setMINVALUE(String value) { this.minvalue = value; } /** * Gets the value of the uomcode property. * * @return * possible object is * {@link String } * */ public String getUOMCODE() { return uomcode; } /** * Sets the value of the uomcode property. * * @param value * allowed object is * {@link String } * */ public void setUOMCODE(String value) { this.uomcode = value; } /** * Gets the value of the userdefinedfieldlovsettings property. * * @return * possible object is * {@link USERDEFINEDFIELDLOVSETTINGS } * */ public USERDEFINEDFIELDLOVSETTINGS getUSERDEFINEDFIELDLOVSETTINGS() { return userdefinedfieldlovsettings; } /** * Sets the value of the userdefinedfieldlovsettings property. * * @param value * allowed object is * {@link USERDEFINEDFIELDLOVSETTINGS } * */ public void setUSERDEFINEDFIELDLOVSETTINGS(USERDEFINEDFIELDLOVSETTINGS value) { this.userdefinedfieldlovsettings = value; } /** * Gets the value of the datetype property. * * @return * possible object is * {@link String } * */ public String getDATETYPE() { return datetype; } /** * Sets the value of the datetype property. * * @param value * allowed object is * {@link String } * */ public void setDATETYPE(String value) { this.datetype = value; } /** * Gets the value of the numtype property. * * @return * possible object is * {@link String } * */ public String getNUMTYPE() { return numtype; } /** * Sets the value of the numtype property. * * @param value * allowed object is * {@link String } * */ public void setNUMTYPE(String value) { this.numtype = value; } /** * Gets the value of the currencycode property. * * @return * possible object is * {@link String } * */ public String getCURRENCYCODE() { return currencycode; } /** * Sets the value of the currencycode property. * * @param value * allowed object is * {@link String } * */ public void setCURRENCYCODE(String value) { this.currencycode = value; } /** * Gets the value of the enableforaddons property. * * @return * possible object is * {@link String } * */ public String getENABLEFORADDONS() { return enableforaddons; } /** * Sets the value of the enableforaddons property. * * @param value * allowed object is * {@link String } * */ public void setENABLEFORADDONS(String value) { this.enableforaddons = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy