JAL-3063 top level element added to JalviewWsParamSet.xsd
[jalview.git] / src / jalview / xml / binding / jalview / ThresholdType.java
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: 2018.09.28 at 12:18:54 PM BST 
6 //
7
8
9 package jalview.xml.binding.jalview;
10
11 import javax.xml.bind.annotation.XmlEnum;
12 import javax.xml.bind.annotation.XmlType;
13
14
15 /**
16  * <p>Java class for ThresholdType.
17  * 
18  * <p>The following schema fragment specifies the expected content contained within this class.
19  * <p>
20  * <pre>
21  * &lt;simpleType name="ThresholdType">
22  *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
23  *     &lt;enumeration value="NONE"/>
24  *     &lt;enumeration value="ABOVE"/>
25  *     &lt;enumeration value="BELOW"/>
26  *   &lt;/restriction>
27  * &lt;/simpleType>
28  * </pre>
29  * 
30  */
31 @XmlType(name = "ThresholdType", namespace = "www.jalview.org/colours")
32 @XmlEnum
33 public enum ThresholdType {
34
35     NONE,
36     ABOVE,
37     BELOW;
38
39     public String value() {
40         return name();
41     }
42
43     public static ThresholdType fromValue(String v) {
44         return valueOf(v);
45     }
46
47 }