/******************************************************************************* * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) * Copyright (C) $(date) The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Jalview. If not, see . * The Jalview Authors are detailed in the 'AUTHORS' file. *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // 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; /** *

Java class for entityType. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="entityType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="protein"/>
 *     <enumeration value="RNA"/>
 *     <enumeration value="DNA"/>
 *     <enumeration value="domain"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @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 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); } }