Merge branch 'develop' into patch/JAL-4281_idwidthandannotHeight_in_project
[jalview.git] / src / jalview / xml / binding / jalview / ThresholdType.java
1 //
2 // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 
3 // See https://eclipse-ee4j.github.io/jaxb-ri 
4 // Any modifications to this file will be lost upon recompilation of the source schema. 
5 // Generated on: 2023.11.01 at 07:03:09 PM GMT 
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  * <pre>
20  * <simpleType name="ThresholdType">
21  *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
22  *     <enumeration value="NONE"/>
23  *     <enumeration value="ABOVE"/>
24  *     <enumeration value="BELOW"/>
25  *   </restriction>
26  * </simpleType>
27  * </pre>
28  * 
29  */
30 @XmlType(name = "ThresholdType", namespace = "www.jalview.org/colours")
31 @XmlEnum
32 public enum ThresholdType {
33
34     NONE,
35     ABOVE,
36     BELOW;
37
38     public String value() {
39         return name();
40     }
41
42     public static ThresholdType fromValue(String v) {
43         return valueOf(v);
44     }
45
46 }