uk.ac.ebi.intenz.xml.jaxb
Enum DatabaseType

java.lang.Object
  extended by java.lang.Enum<DatabaseType>
      extended by uk.ac.ebi.intenz.xml.jaxb.DatabaseType
All Implemented Interfaces:
Serializable, Comparable<DatabaseType>

public enum DatabaseType
extends Enum<DatabaseType>

Java class for databaseType.

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

 <simpleType name="databaseType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="BRENDA"/>
     <enumeration value="CAS"/>
     <enumeration value="Diagram"/>
     <enumeration value="ERGO"/>
     <enumeration value="ExPASy"/>
     <enumeration value="GO"/>
     <enumeration value="KEGG ENZYME"/>
     <enumeration value="MEROPS"/>
     <enumeration value="MIM"/>
     <enumeration value="NIST 74"/>
     <enumeration value="PROSITE"/>
     <enumeration value="Rhea"/>
     <enumeration value="UM-BBD"/>
     <enumeration value="UniProt"/>
     <enumeration value="WIT"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
BRENDA
          BRENDA
CAS
          CAS number
DIAGRAM
          Diagram
ERGO
          ERGO
EX_PA_SY
          SIB's ExPASy
GO
          Gene Ontology
KEGG_ENZYME
          KEGG ENZYME
MEROPS
          MEROPS
MIM
          MIM
NIST_74
          NIST 74
PROSITE
          PROSITE
RHEA
          Rhea
UM_BBD
          UM-BBD
UNI_PROT
          UniProtKB/Swiss-Prot
WIT
          WIT
 
Method Summary
static DatabaseType fromValue(String v)
           
 String value()
           
static DatabaseType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DatabaseType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BRENDA

public static final DatabaseType BRENDA
BRENDA


CAS

public static final DatabaseType CAS
CAS number


DIAGRAM

public static final DatabaseType DIAGRAM
Diagram


ERGO

public static final DatabaseType ERGO
ERGO


EX_PA_SY

public static final DatabaseType EX_PA_SY
SIB's ExPASy


GO

public static final DatabaseType GO
Gene Ontology


KEGG_ENZYME

public static final DatabaseType KEGG_ENZYME
KEGG ENZYME


MEROPS

public static final DatabaseType MEROPS
MEROPS


MIM

public static final DatabaseType MIM
MIM


NIST_74

public static final DatabaseType NIST_74
NIST 74


PROSITE

public static final DatabaseType PROSITE
PROSITE


RHEA

public static final DatabaseType RHEA
Rhea


UM_BBD

public static final DatabaseType UM_BBD
UM-BBD


UNI_PROT

public static final DatabaseType UNI_PROT
UniProtKB/Swiss-Prot


WIT

public static final DatabaseType WIT
WIT

Method Detail

values

public static DatabaseType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DatabaseType c : DatabaseType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DatabaseType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static DatabaseType fromValue(String v)


Copyright © 2013 EMBL-EBI. All Rights Reserved.