X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FFilterBy.java;fp=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FFilterBy.java;h=9614490842d3e276d63b4230793702a985f129f2;hb=3459a8a691cb22508d7067f240b7254e588e77d3;hp=bbb84a473da3034b5270f4ed7bc2431002921a67;hpb=5b27f1062b2203c4c31702e205f4c78e1992063e;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/FilterBy.java b/src/jalview/xml/binding/jalview/FilterBy.java index bbb84a4..9614490 100644 --- a/src/jalview/xml/binding/jalview/FilterBy.java +++ b/src/jalview/xml/binding/jalview/FilterBy.java @@ -5,56 +5,56 @@ // Generated on: 2021.08.30 at 11:05:22 AM BST // - 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 FilterBy. * - * <p>The following schema fragment specifies the expected content contained within this class. - * <pre> - * &lt;simpleType name="FilterBy"&gt; - * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; - * &lt;enumeration value="byLabel"/&gt; - * &lt;enumeration value="byScore"/&gt; - * &lt;enumeration value="byAttribute"/&gt; - * &lt;/restriction&gt; - * &lt;/simpleType&gt; - * </pre> + * <p>The following schema fragment specifies the expected content + * contained within this class. <pre> &lt;simpleType + * name="FilterBy"&gt; &lt;restriction + * base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;enumeration + * value="byLabel"/&gt; &lt;enumeration value="byScore"/&gt; + * &lt;enumeration value="byAttribute"/&gt; &lt;/restriction&gt; + * &lt;/simpleType&gt; </pre> * */ @XmlType(name = "FilterBy", namespace = "www.jalview.org/colours") @XmlEnum -public enum FilterBy { - - @XmlEnumValue("byLabel") - BY_LABEL("byLabel"), - @XmlEnumValue("byScore") - BY_SCORE("byScore"), - @XmlEnumValue("byAttribute") - BY_ATTRIBUTE("byAttribute"); - private final String value; - - FilterBy(String v) { - value = v; - } - - public String value() { - return value; - } - - public static FilterBy fromValue(String v) { - for (FilterBy c: FilterBy.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); +public enum FilterBy +{ + + @XmlEnumValue("byLabel") + BY_LABEL("byLabel"), @XmlEnumValue("byScore") + BY_SCORE("byScore"), @XmlEnumValue("byAttribute") + BY_ATTRIBUTE("byAttribute"); + + private final String value; + + FilterBy(String v) + { + value = v; + } + + public String value() + { + return value; + } + + public static FilterBy fromValue(String v) + { + for (FilterBy c : FilterBy.values()) + { + if (c.value.equals(v)) + { + return c; + } } + throw new IllegalArgumentException(v); + } }