X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FThresholdType.java;fp=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FThresholdType.java;h=501c72946af3a8136b732e2f5fb040229f7a478c;hb=3459a8a691cb22508d7067f240b7254e588e77d3;hp=edb9152ba7e2e047b3964094ff16dce2c2a68a1a;hpb=5b27f1062b2203c4c31702e205f4c78e1992063e;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/ThresholdType.java b/src/jalview/xml/binding/jalview/ThresholdType.java index edb9152..501c729 100644 --- a/src/jalview/xml/binding/jalview/ThresholdType.java +++ b/src/jalview/xml/binding/jalview/ThresholdType.java @@ -5,42 +5,38 @@ // 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.XmlType; - /** * <p>Java class for ThresholdType. * - * <p>The following schema fragment specifies the expected content contained within this class. - * <pre> - * &lt;simpleType name="ThresholdType"&gt; - * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; - * &lt;enumeration value="NONE"/&gt; - * &lt;enumeration value="ABOVE"/&gt; - * &lt;enumeration value="BELOW"/&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="ThresholdType"&gt; &lt;restriction + * base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;enumeration + * value="NONE"/&gt; &lt;enumeration value="ABOVE"/&gt; + * &lt;enumeration value="BELOW"/&gt; &lt;/restriction&gt; + * &lt;/simpleType&gt; </pre> * */ @XmlType(name = "ThresholdType", namespace = "www.jalview.org/colours") @XmlEnum -public enum ThresholdType { +public enum ThresholdType +{ - NONE, - ABOVE, - BELOW; + NONE, ABOVE, BELOW; - public String value() { - return name(); - } + public String value() + { + return name(); + } - public static ThresholdType fromValue(String v) { - return valueOf(v); - } + public static ThresholdType fromValue(String v) + { + return valueOf(v); + } }