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.12.20 at 11:47:26 AM GMT
9 package jalview.xml.binding.jalview;
11 import javax.xml.bind.annotation.XmlEnum;
12 import javax.xml.bind.annotation.XmlEnumValue;
13 import javax.xml.bind.annotation.XmlType;
17 * <p>Java class for NoValueColour.
19 * <p>The following schema fragment specifies the expected content contained within this class.
22 * <simpleType name="NoValueColour">
23 * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
24 * <enumeration value="None"/>
25 * <enumeration value="Min"/>
26 * <enumeration value="Max"/>
32 @XmlType(name = "NoValueColour", namespace = "www.jalview.org/colours")
34 public enum NoValueColour {
42 private final String value;
44 NoValueColour(String v) {
48 public String value() {
52 public static NoValueColour fromValue(String v) {
53 for (NoValueColour c: NoValueColour.values()) {
54 if (c.value.equals(v)) {
58 throw new IllegalArgumentException(v);