JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / sifts / EntityType.java
index f74da5a..3f7a8c3 100644 (file)
@@ -5,19 +5,21 @@
 // Generated on: 2015.10.09 at 03:18:33 PM BST 
 //
 
-
 package jalview.xml.binding.sifts;
 
 import javax.xml.bind.annotation.XmlEnum;
 import javax.xml.bind.annotation.XmlEnumValue;
 import javax.xml.bind.annotation.XmlType;
 
-
 /**
- * <p>Java class for entityType.
+ * <p>
+ * Java class for entityType.
  * 
- * <p>The following schema fragment specifies the expected content contained within this class.
  * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p>
+ * 
  * <pre>
  * &lt;simpleType name="entityType">
  *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
@@ -30,33 +32,39 @@ import javax.xml.bind.annotation.XmlType;
  * </pre>
  * 
  */
-@XmlType(name = "entityType", namespace = "http://www.ebi.ac.uk/pdbe/docs/sifts/dataTypes.xsd")
+@XmlType(
+  name = "entityType",
+  namespace = "http://www.ebi.ac.uk/pdbe/docs/sifts/dataTypes.xsd")
 @XmlEnum
-public enum EntityType {
-
-    @XmlEnumValue("protein")
-    PROTEIN("protein"),
-    RNA("RNA"),
-    DNA("DNA"),
-    @XmlEnumValue("domain")
-    DOMAIN("domain");
-    private final String value;
-
-    EntityType(String v) {
-        value = v;
-    }
+public enum EntityType
+{
 
-    public String value() {
-        return value;
-    }
+  @XmlEnumValue("protein")
+  PROTEIN("protein"), RNA("RNA"), DNA("DNA"), @XmlEnumValue("domain")
+  DOMAIN("domain");
+
+  private final String value;
+
+  EntityType(String v)
+  {
+    value = v;
+  }
+
+  public String value()
+  {
+    return value;
+  }
 
-    public static EntityType fromValue(String v) {
-        for (EntityType c: EntityType.values()) {
-            if (c.value.equals(v)) {
-                return c;
-            }
-        }
-        throw new IllegalArgumentException(v);
+  public static EntityType fromValue(String v)
+  {
+    for (EntityType c : EntityType.values())
+    {
+      if (c.value.equals(v))
+      {
+        return c;
+      }
     }
+    throw new IllegalArgumentException(v);
+  }
 
 }