Merge branch 'develop' into releases/Release_2_11_3_Branch
[jalview.git] / src / jalview / xml / binding / jalview / NoValueColour.java
index b0d667c..8d22ad8 100644 (file)
@@ -2,59 +2,59 @@
 // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 
 // See https://eclipse-ee4j.github.io/jaxb-ri 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2021.08.30 at 11:05:22 AM BST 
+// Generated on: 2023.11.01 at 07:03:09 PM GMT 
 //
 
+
 package jalview.xml.binding.jalview;
 
 import javax.xml.bind.annotation.XmlEnum;
 import javax.xml.bind.annotation.XmlEnumValue;
 import javax.xml.bind.annotation.XmlType;
 
+
 /**
  * <p>Java class for NoValueColour.
  * 
- * <p>The following schema fragment specifies the expected content
- * contained within this class. <pre> <simpleType
- * name="NoValueColour"> <restriction
- * base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration
- * value="None"/> <enumeration value="Min"/>
- * <enumeration value="Max"/> </restriction>
- * </simpleType> </pre>
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <pre>
+ * <simpleType name="NoValueColour">
+ *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ *     <enumeration value="None"/>
+ *     <enumeration value="Min"/>
+ *     <enumeration value="Max"/>
+ *   </restriction>
+ * </simpleType>
+ * </pre>
  * 
  */
 @XmlType(name = "NoValueColour", namespace = "www.jalview.org/colours")
 @XmlEnum
-public enum NoValueColour
-{
-
-  @XmlEnumValue("None")
-  NONE("None"), @XmlEnumValue("Min")
-  MIN("Min"), @XmlEnumValue("Max")
-  MAX("Max");
-
-  private final String value;
-
-  NoValueColour(String v)
-  {
-    value = v;
-  }
-
-  public String value()
-  {
-    return value;
-  }
-
-  public static NoValueColour fromValue(String v)
-  {
-    for (NoValueColour c : NoValueColour.values())
-    {
-      if (c.value.equals(v))
-      {
-        return c;
-      }
+public enum NoValueColour {
+
+    @XmlEnumValue("None")
+    NONE("None"),
+    @XmlEnumValue("Min")
+    MIN("Min"),
+    @XmlEnumValue("Max")
+    MAX("Max");
+    private final String value;
+
+    NoValueColour(String v) {
+        value = v;
+    }
+
+    public String value() {
+        return value;
+    }
+
+    public static NoValueColour fromValue(String v) {
+        for (NoValueColour c: NoValueColour.values()) {
+            if (c.value.equals(v)) {
+                return c;
+            }
+        }
+        throw new IllegalArgumentException(v);
     }
-    throw new IllegalArgumentException(v);
-  }
 
 }