JAL-3438 spotless for 2.11.2.0
[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: 2021.08.30 at 11:05:22 AM 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>Java class for ThresholdType.
15  * 
16  * <p>The following schema fragment specifies the expected content
17  * contained within this class. <pre> <simpleType
18  * name="ThresholdType"> <restriction
19  * base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration
20  * value="NONE"/> <enumeration value="ABOVE"/>
21  * <enumeration value="BELOW"/> </restriction>
22  * </simpleType> </pre>
23  * 
24  */
25 @XmlType(name = "ThresholdType", namespace = "www.jalview.org/colours")
26 @XmlEnum
27 public enum ThresholdType
28 {
29
30   NONE, ABOVE, BELOW;
31
32   public String value()
33   {
34     return name();
35   }
36
37   public static ThresholdType fromValue(String v)
38   {
39     return valueOf(v);
40   }
41
42 }