1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2015.11.12 at 10:43:37 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.fnlu;
10  
11  import javax.xml.bind.annotation.XmlEnum;
12  import javax.xml.bind.annotation.XmlType;
13  
14  
15  /**
16   * <p>Java class for POSType.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * <p>
20   * <pre>
21   * &lt;simpleType name="POSType">
22   *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
23   *     &lt;enumeration value="N"/>
24   *     &lt;enumeration value="V"/>
25   *     &lt;enumeration value="A"/>
26   *     &lt;enumeration value="ADV"/>
27   *     &lt;enumeration value="PRON"/>
28   *     &lt;enumeration value="PREP"/>
29   *     &lt;enumeration value="NUM"/>
30   *     &lt;enumeration value="C"/>
31   *     &lt;enumeration value="INTJ"/>
32   *     &lt;enumeration value="ART"/>
33   *     &lt;enumeration value="SCON"/>
34   *     &lt;enumeration value="CCON"/>
35   *     &lt;enumeration value="AVP"/>
36   *   &lt;/restriction>
37   * &lt;/simpleType>
38   * </pre>
39   * 
40   */
41  @XmlType(name = "POSType")
42  @XmlEnum
43  public enum POSType {
44  
45      N,
46      V,
47      A,
48      ADV,
49      PRON,
50      PREP,
51      NUM,
52      C,
53      INTJ,
54      ART,
55      SCON,
56      CCON,
57      AVP;
58  
59      public String value() {
60          return name();
61      }
62  
63      public static POSType fromValue(String v) {
64          return valueOf(v);
65      }
66  
67  }