INPUTPARAMETERTYPE.java

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
  3. // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2020.01.24 at 05:08:34 PM CET
  6. //


  7. package org.opentrafficsim.xml.generated;

  8. import java.io.Serializable;
  9. import javax.annotation.Generated;
  10. import javax.xml.bind.annotation.XmlAccessType;
  11. import javax.xml.bind.annotation.XmlAccessorType;
  12. import javax.xml.bind.annotation.XmlAttribute;
  13. import javax.xml.bind.annotation.XmlType;
  14. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  15. import org.opentrafficsim.xml.bindings.ClassNameAdapter;


  16. /**
  17.  * <p>Java class for INPUTPARAMETERTYPE complex type.
  18.  *
  19.  * <p>The following schema fragment specifies the expected content contained within this class.
  20.  *
  21.  * <pre>
  22.  * &lt;complexType name="INPUTPARAMETERTYPE"&gt;
  23.  *   &lt;complexContent&gt;
  24.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  25.  *       &lt;attribute name="TYPE" use="required"&gt;
  26.  *         &lt;simpleType&gt;
  27.  *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  28.  *             &lt;pattern value="(\ {0})CLASS|STRING|DOUBLE|INTEGER|(\ {0})LENGTH|POSITION|DURATION|TIME|SPEED|ACCELERATION|FREQUENCY|LINEARDENSITY|(\ {0})FRACTION"/&gt;
  29.  *           &lt;/restriction&gt;
  30.  *         &lt;/simpleType&gt;
  31.  *       &lt;/attribute&gt;
  32.  *       &lt;attribute name="VALUE" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
  33.  *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
  34.  *       &lt;attribute name="CLASS" type="{http://www.opentrafficsim.org/ots}CLASSNAMETYPE" /&gt;
  35.  *     &lt;/restriction&gt;
  36.  *   &lt;/complexContent&gt;
  37.  * &lt;/complexType&gt;
  38.  * </pre>
  39.  *
  40.  *
  41.  */
  42. @XmlAccessorType(XmlAccessType.FIELD)
  43. @XmlType(name = "INPUTPARAMETERTYPE")
  44. @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  45. public class INPUTPARAMETERTYPE
  46.     implements Serializable
  47. {

  48.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  49.     private final static long serialVersionUID = 10102L;
  50.     @XmlAttribute(name = "TYPE", required = true)
  51.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  52.     protected String type;
  53.     @XmlAttribute(name = "VALUE", required = true)
  54.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  55.     protected String value;
  56.     @XmlAttribute(name = "ID", required = true)
  57.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  58.     protected String id;
  59.     @XmlAttribute(name = "CLASS")
  60.     @XmlJavaTypeAdapter(ClassNameAdapter.class)
  61.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  62.     protected Class _class;

  63.     /**
  64.      * Gets the value of the type property.
  65.      *
  66.      * @return
  67.      *     possible object is
  68.      *     {@link String }
  69.      *    
  70.      */
  71.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  72.     public String getTYPE() {
  73.         return type;
  74.     }

  75.     /**
  76.      * Sets the value of the type property.
  77.      *
  78.      * @param value
  79.      *     allowed object is
  80.      *     {@link String }
  81.      *    
  82.      */
  83.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  84.     public void setTYPE(String value) {
  85.         this.type = value;
  86.     }

  87.     /**
  88.      * Gets the value of the value property.
  89.      *
  90.      * @return
  91.      *     possible object is
  92.      *     {@link String }
  93.      *    
  94.      */
  95.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  96.     public String getVALUE() {
  97.         return value;
  98.     }

  99.     /**
  100.      * Sets the value of the value property.
  101.      *
  102.      * @param value
  103.      *     allowed object is
  104.      *     {@link String }
  105.      *    
  106.      */
  107.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  108.     public void setVALUE(String value) {
  109.         this.value = value;
  110.     }

  111.     /**
  112.      * Gets the value of the id property.
  113.      *
  114.      * @return
  115.      *     possible object is
  116.      *     {@link String }
  117.      *    
  118.      */
  119.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  120.     public String getID() {
  121.         return id;
  122.     }

  123.     /**
  124.      * Sets the value of the id property.
  125.      *
  126.      * @param value
  127.      *     allowed object is
  128.      *     {@link String }
  129.      *    
  130.      */
  131.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  132.     public void setID(String value) {
  133.         this.id = value;
  134.     }

  135.     /**
  136.      * Gets the value of the class property.
  137.      *
  138.      * @return
  139.      *     possible object is
  140.      *     {@link String }
  141.      *    
  142.      */
  143.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  144.     public Class getCLASS() {
  145.         return _class;
  146.     }

  147.     /**
  148.      * Sets the value of the class property.
  149.      *
  150.      * @param value
  151.      *     allowed object is
  152.      *     {@link String }
  153.      *    
  154.      */
  155.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  156.     public void setCLASS(Class value) {
  157.         this._class = value;
  158.     }

  159. }