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.XmlEnumValue;
13  import javax.xml.bind.annotation.XmlType;
14  
15  
16  /**
17   * <p>Java class for coreType.
18   * 
19   * <p>The following schema fragment specifies the expected content contained within this class.
20   * <p>
21   * <pre>
22   * &lt;simpleType name="coreType">
23   *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
24   *     &lt;enumeration value="Core"/>
25   *     &lt;enumeration value="Peripheral"/>
26   *     &lt;enumeration value="Extra-Thematic"/>
27   *     &lt;enumeration value="Core-Unexpressed"/>
28   *   &lt;/restriction>
29   * &lt;/simpleType>
30   * </pre>
31   * 
32   */
33  @XmlType(name = "coreType")
34  @XmlEnum
35  public enum CoreType {
36  
37      @XmlEnumValue("Core")
38      CORE("Core"),
39      @XmlEnumValue("Peripheral")
40      PERIPHERAL("Peripheral"),
41      @XmlEnumValue("Extra-Thematic")
42      EXTRA_THEMATIC("Extra-Thematic"),
43      @XmlEnumValue("Core-Unexpressed")
44      CORE_UNEXPRESSED("Core-Unexpressed");
45      private final String value;
46  
47      CoreType(String v) {
48          value = v;
49      }
50  
51      public String value() {
52          return value;
53      }
54  
55      public static CoreType fromValue(String v) {
56          for (CoreType c: CoreType.values()) {
57              if (c.value.equals(v)) {
58                  return c;
59              }
60          }
61          throw new IllegalArgumentException(v);
62      }
63  
64  }