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