View Javadoc
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: 2019.03.16 at 06:21:55 PM CET 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import java.util.ArrayList;
12  import java.util.List;
13  import javax.annotation.Generated;
14  import javax.xml.bind.annotation.XmlAccessType;
15  import javax.xml.bind.annotation.XmlAccessorType;
16  import javax.xml.bind.annotation.XmlAttribute;
17  import javax.xml.bind.annotation.XmlElement;
18  import javax.xml.bind.annotation.XmlRootElement;
19  import javax.xml.bind.annotation.XmlSchemaType;
20  import javax.xml.bind.annotation.XmlType;
21  import javax.xml.datatype.XMLGregorianCalendar;
22  
23  
24  /**
25   * <p>Java class for anonymous complex type.
26   * 
27   * <p>The following schema fragment specifies the expected content contained within this class.
28   * 
29   * <pre>
30   * &lt;complexType&gt;
31   *   &lt;complexContent&gt;
32   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
33   *       &lt;sequence&gt;
34   *         &lt;element name="OD"&gt;
35   *           &lt;complexType&gt;
36   *             &lt;complexContent&gt;
37   *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
38   *                 &lt;sequence&gt;
39   *                   &lt;element name="GLOBALTIME" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/&gt;
40   *                   &lt;element name="CATEGORY" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/&gt;
41   *                   &lt;element name="DEMAND" maxOccurs="unbounded" minOccurs="0"&gt;
42   *                     &lt;complexType&gt;
43   *                       &lt;complexContent&gt;
44   *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
45   *                           &lt;sequence&gt;
46   *                             &lt;element name="LEVEL" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/&gt;
47   *                           &lt;/sequence&gt;
48   *                           &lt;attribute name="ORIGIN" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
49   *                           &lt;attribute name="DESTINATION" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
50   *                           &lt;attribute name="CATEGORY" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
51   *                           &lt;attribute name="INTERPOLATION" type="{http://www.opentrafficsim.org/ots}INTERPOLATIONTYPE" /&gt;
52   *                           &lt;attribute name="FACTOR" type="{http://www.opentrafficsim.org/ots}POSITIVEFACTOR" /&gt;
53   *                           &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
54   *                         &lt;/restriction&gt;
55   *                       &lt;/complexContent&gt;
56   *                     &lt;/complexType&gt;
57   *                   &lt;/element&gt;
58   *                 &lt;/sequence&gt;
59   *                 &lt;attribute name="NAME" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
60   *                 &lt;attribute name="GLOBALINTERPOLATION" type="{http://www.opentrafficsim.org/ots}INTERPOLATIONTYPE" /&gt;
61   *                 &lt;attribute name="START" type="{http://www.w3.org/2001/XMLSchema}dateTime" /&gt;
62   *                 &lt;attribute name="GLOBALFACTOR" type="{http://www.opentrafficsim.org/ots}POSITIVEFACTOR" /&gt;
63   *                 &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
64   *               &lt;/restriction&gt;
65   *             &lt;/complexContent&gt;
66   *           &lt;/complexType&gt;
67   *         &lt;/element&gt;
68   *       &lt;/sequence&gt;
69   *     &lt;/restriction&gt;
70   *   &lt;/complexContent&gt;
71   * &lt;/complexType&gt;
72   * </pre>
73   * 
74   * 
75   */
76  @XmlAccessorType(XmlAccessType.FIELD)
77  @XmlType(name = "", propOrder = {
78      "od"
79  })
80  @XmlRootElement(name = "NETWORKDEMAND")
81  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
82  public class NETWORKDEMAND {
83  
84      @XmlElement(name = "OD", required = true)
85      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
86      protected NETWORKDEMAND.OD od;
87  
88      /**
89       * Gets the value of the od property.
90       * 
91       * @return
92       *     possible object is
93       *     {@link NETWORKDEMAND.OD }
94       *     
95       */
96      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
97      public NETWORKDEMAND.OD getOD() {
98          return od;
99      }
100 
101     /**
102      * Sets the value of the od property.
103      * 
104      * @param value
105      *     allowed object is
106      *     {@link NETWORKDEMAND.OD }
107      *     
108      */
109     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
110     public void setOD(NETWORKDEMAND.OD value) {
111         this.od = value;
112     }
113 
114 
115     /**
116      * <p>Java class for anonymous complex type.
117      * 
118      * <p>The following schema fragment specifies the expected content contained within this class.
119      * 
120      * <pre>
121      * &lt;complexType&gt;
122      *   &lt;complexContent&gt;
123      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
124      *       &lt;sequence&gt;
125      *         &lt;element name="GLOBALTIME" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/&gt;
126      *         &lt;element name="CATEGORY" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/&gt;
127      *         &lt;element name="DEMAND" maxOccurs="unbounded" minOccurs="0"&gt;
128      *           &lt;complexType&gt;
129      *             &lt;complexContent&gt;
130      *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
131      *                 &lt;sequence&gt;
132      *                   &lt;element name="LEVEL" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/&gt;
133      *                 &lt;/sequence&gt;
134      *                 &lt;attribute name="ORIGIN" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
135      *                 &lt;attribute name="DESTINATION" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
136      *                 &lt;attribute name="CATEGORY" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
137      *                 &lt;attribute name="INTERPOLATION" type="{http://www.opentrafficsim.org/ots}INTERPOLATIONTYPE" /&gt;
138      *                 &lt;attribute name="FACTOR" type="{http://www.opentrafficsim.org/ots}POSITIVEFACTOR" /&gt;
139      *                 &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
140      *               &lt;/restriction&gt;
141      *             &lt;/complexContent&gt;
142      *           &lt;/complexType&gt;
143      *         &lt;/element&gt;
144      *       &lt;/sequence&gt;
145      *       &lt;attribute name="NAME" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
146      *       &lt;attribute name="GLOBALINTERPOLATION" type="{http://www.opentrafficsim.org/ots}INTERPOLATIONTYPE" /&gt;
147      *       &lt;attribute name="START" type="{http://www.w3.org/2001/XMLSchema}dateTime" /&gt;
148      *       &lt;attribute name="GLOBALFACTOR" type="{http://www.opentrafficsim.org/ots}POSITIVEFACTOR" /&gt;
149      *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
150      *     &lt;/restriction&gt;
151      *   &lt;/complexContent&gt;
152      * &lt;/complexType&gt;
153      * </pre>
154      * 
155      * 
156      */
157     @XmlAccessorType(XmlAccessType.FIELD)
158     @XmlType(name = "", propOrder = {
159         "globaltime",
160         "category",
161         "demand"
162     })
163     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
164     public static class OD {
165 
166         @XmlElement(name = "GLOBALTIME")
167         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
168         protected Object globaltime;
169         @XmlElement(name = "CATEGORY")
170         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
171         protected List<Object> category;
172         @XmlElement(name = "DEMAND")
173         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
174         protected List<NETWORKDEMAND.OD.DEMAND> demand;
175         @XmlAttribute(name = "NAME")
176         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
177         protected String name;
178         @XmlAttribute(name = "GLOBALINTERPOLATION")
179         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
180         protected String globalinterpolation;
181         @XmlAttribute(name = "START")
182         @XmlSchemaType(name = "dateTime")
183         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
184         protected XMLGregorianCalendar start;
185         @XmlAttribute(name = "GLOBALFACTOR")
186         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
187         protected String globalfactor;
188         @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
189         @XmlSchemaType(name = "anyURI")
190         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
191         protected String base;
192 
193         /**
194          * Gets the value of the globaltime property.
195          * 
196          * @return
197          *     possible object is
198          *     {@link Object }
199          *     
200          */
201         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
202         public Object getGLOBALTIME() {
203             return globaltime;
204         }
205 
206         /**
207          * Sets the value of the globaltime property.
208          * 
209          * @param value
210          *     allowed object is
211          *     {@link Object }
212          *     
213          */
214         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
215         public void setGLOBALTIME(Object value) {
216             this.globaltime = value;
217         }
218 
219         /**
220          * Gets the value of the category property.
221          * 
222          * <p>
223          * This accessor method returns a reference to the live list,
224          * not a snapshot. Therefore any modification you make to the
225          * returned list will be present inside the JAXB object.
226          * This is why there is not a <CODE>set</CODE> method for the category property.
227          * 
228          * <p>
229          * For example, to add a new item, do as follows:
230          * <pre>
231          *    getCATEGORY().add(newItem);
232          * </pre>
233          * 
234          * 
235          * <p>
236          * Objects of the following type(s) are allowed in the list
237          * {@link Object }
238          * 
239          * 
240          */
241         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
242         public List<Object> getCATEGORY() {
243             if (category == null) {
244                 category = new ArrayList<Object>();
245             }
246             return this.category;
247         }
248 
249         /**
250          * Gets the value of the demand property.
251          * 
252          * <p>
253          * This accessor method returns a reference to the live list,
254          * not a snapshot. Therefore any modification you make to the
255          * returned list will be present inside the JAXB object.
256          * This is why there is not a <CODE>set</CODE> method for the demand property.
257          * 
258          * <p>
259          * For example, to add a new item, do as follows:
260          * <pre>
261          *    getDEMAND().add(newItem);
262          * </pre>
263          * 
264          * 
265          * <p>
266          * Objects of the following type(s) are allowed in the list
267          * {@link NETWORKDEMAND.OD.DEMAND }
268          * 
269          * 
270          */
271         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
272         public List<NETWORKDEMAND.OD.DEMAND> getDEMAND() {
273             if (demand == null) {
274                 demand = new ArrayList<NETWORKDEMAND.OD.DEMAND>();
275             }
276             return this.demand;
277         }
278 
279         /**
280          * Gets the value of the name property.
281          * 
282          * @return
283          *     possible object is
284          *     {@link String }
285          *     
286          */
287         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
288         public String getNAME() {
289             return name;
290         }
291 
292         /**
293          * Sets the value of the name property.
294          * 
295          * @param value
296          *     allowed object is
297          *     {@link String }
298          *     
299          */
300         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
301         public void setNAME(String value) {
302             this.name = value;
303         }
304 
305         /**
306          * Gets the value of the globalinterpolation property.
307          * 
308          * @return
309          *     possible object is
310          *     {@link String }
311          *     
312          */
313         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
314         public String getGLOBALINTERPOLATION() {
315             return globalinterpolation;
316         }
317 
318         /**
319          * Sets the value of the globalinterpolation property.
320          * 
321          * @param value
322          *     allowed object is
323          *     {@link String }
324          *     
325          */
326         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
327         public void setGLOBALINTERPOLATION(String value) {
328             this.globalinterpolation = value;
329         }
330 
331         /**
332          * Gets the value of the start property.
333          * 
334          * @return
335          *     possible object is
336          *     {@link XMLGregorianCalendar }
337          *     
338          */
339         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
340         public XMLGregorianCalendar getSTART() {
341             return start;
342         }
343 
344         /**
345          * Sets the value of the start property.
346          * 
347          * @param value
348          *     allowed object is
349          *     {@link XMLGregorianCalendar }
350          *     
351          */
352         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
353         public void setSTART(XMLGregorianCalendar value) {
354             this.start = value;
355         }
356 
357         /**
358          * Gets the value of the globalfactor property.
359          * 
360          * @return
361          *     possible object is
362          *     {@link String }
363          *     
364          */
365         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
366         public String getGLOBALFACTOR() {
367             return globalfactor;
368         }
369 
370         /**
371          * Sets the value of the globalfactor property.
372          * 
373          * @param value
374          *     allowed object is
375          *     {@link String }
376          *     
377          */
378         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
379         public void setGLOBALFACTOR(String value) {
380             this.globalfactor = value;
381         }
382 
383         /**
384          * Gets the value of the base property.
385          * 
386          * @return
387          *     possible object is
388          *     {@link String }
389          *     
390          */
391         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
392         public String getBase() {
393             return base;
394         }
395 
396         /**
397          * Sets the value of the base property.
398          * 
399          * @param value
400          *     allowed object is
401          *     {@link String }
402          *     
403          */
404         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
405         public void setBase(String value) {
406             this.base = value;
407         }
408 
409 
410         /**
411          * <p>Java class for anonymous complex type.
412          * 
413          * <p>The following schema fragment specifies the expected content contained within this class.
414          * 
415          * <pre>
416          * &lt;complexType&gt;
417          *   &lt;complexContent&gt;
418          *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
419          *       &lt;sequence&gt;
420          *         &lt;element name="LEVEL" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded" minOccurs="0"/&gt;
421          *       &lt;/sequence&gt;
422          *       &lt;attribute name="ORIGIN" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
423          *       &lt;attribute name="DESTINATION" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
424          *       &lt;attribute name="CATEGORY" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
425          *       &lt;attribute name="INTERPOLATION" type="{http://www.opentrafficsim.org/ots}INTERPOLATIONTYPE" /&gt;
426          *       &lt;attribute name="FACTOR" type="{http://www.opentrafficsim.org/ots}POSITIVEFACTOR" /&gt;
427          *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
428          *     &lt;/restriction&gt;
429          *   &lt;/complexContent&gt;
430          * &lt;/complexType&gt;
431          * </pre>
432          * 
433          * 
434          */
435         @XmlAccessorType(XmlAccessType.FIELD)
436         @XmlType(name = "", propOrder = {
437             "level"
438         })
439         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
440         public static class DEMAND {
441 
442             @XmlElement(name = "LEVEL")
443             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
444             protected List<Object> level;
445             @XmlAttribute(name = "ORIGIN", required = true)
446             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
447             protected String origin;
448             @XmlAttribute(name = "DESTINATION", required = true)
449             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
450             protected String destination;
451             @XmlAttribute(name = "CATEGORY")
452             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
453             protected String category;
454             @XmlAttribute(name = "INTERPOLATION")
455             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
456             protected String interpolation;
457             @XmlAttribute(name = "FACTOR")
458             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
459             protected String factor;
460             @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
461             @XmlSchemaType(name = "anyURI")
462             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
463             protected String base;
464 
465             /**
466              * Gets the value of the level property.
467              * 
468              * <p>
469              * This accessor method returns a reference to the live list,
470              * not a snapshot. Therefore any modification you make to the
471              * returned list will be present inside the JAXB object.
472              * This is why there is not a <CODE>set</CODE> method for the level property.
473              * 
474              * <p>
475              * For example, to add a new item, do as follows:
476              * <pre>
477              *    getLEVEL().add(newItem);
478              * </pre>
479              * 
480              * 
481              * <p>
482              * Objects of the following type(s) are allowed in the list
483              * {@link Object }
484              * 
485              * 
486              */
487             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
488             public List<Object> getLEVEL() {
489                 if (level == null) {
490                     level = new ArrayList<Object>();
491                 }
492                 return this.level;
493             }
494 
495             /**
496              * Gets the value of the origin property.
497              * 
498              * @return
499              *     possible object is
500              *     {@link String }
501              *     
502              */
503             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
504             public String getORIGIN() {
505                 return origin;
506             }
507 
508             /**
509              * Sets the value of the origin property.
510              * 
511              * @param value
512              *     allowed object is
513              *     {@link String }
514              *     
515              */
516             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
517             public void setORIGIN(String value) {
518                 this.origin = value;
519             }
520 
521             /**
522              * Gets the value of the destination property.
523              * 
524              * @return
525              *     possible object is
526              *     {@link String }
527              *     
528              */
529             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
530             public String getDESTINATION() {
531                 return destination;
532             }
533 
534             /**
535              * Sets the value of the destination property.
536              * 
537              * @param value
538              *     allowed object is
539              *     {@link String }
540              *     
541              */
542             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
543             public void setDESTINATION(String value) {
544                 this.destination = value;
545             }
546 
547             /**
548              * Gets the value of the category property.
549              * 
550              * @return
551              *     possible object is
552              *     {@link String }
553              *     
554              */
555             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
556             public String getCATEGORY() {
557                 return category;
558             }
559 
560             /**
561              * Sets the value of the category property.
562              * 
563              * @param value
564              *     allowed object is
565              *     {@link String }
566              *     
567              */
568             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
569             public void setCATEGORY(String value) {
570                 this.category = value;
571             }
572 
573             /**
574              * Gets the value of the interpolation property.
575              * 
576              * @return
577              *     possible object is
578              *     {@link String }
579              *     
580              */
581             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
582             public String getINTERPOLATION() {
583                 return interpolation;
584             }
585 
586             /**
587              * Sets the value of the interpolation property.
588              * 
589              * @param value
590              *     allowed object is
591              *     {@link String }
592              *     
593              */
594             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
595             public void setINTERPOLATION(String value) {
596                 this.interpolation = value;
597             }
598 
599             /**
600              * Gets the value of the factor property.
601              * 
602              * @return
603              *     possible object is
604              *     {@link String }
605              *     
606              */
607             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
608             public String getFACTOR() {
609                 return factor;
610             }
611 
612             /**
613              * Sets the value of the factor property.
614              * 
615              * @param value
616              *     allowed object is
617              *     {@link String }
618              *     
619              */
620             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
621             public void setFACTOR(String value) {
622                 this.factor = value;
623             }
624 
625             /**
626              * Gets the value of the base property.
627              * 
628              * @return
629              *     possible object is
630              *     {@link String }
631              *     
632              */
633             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
634             public String getBase() {
635                 return base;
636             }
637 
638             /**
639              * Sets the value of the base property.
640              * 
641              * @param value
642              *     allowed object is
643              *     {@link String }
644              *     
645              */
646             @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
647             public void setBase(String value) {
648                 this.base = value;
649             }
650 
651         }
652 
653     }
654 
655 }