org.forester.go
Enum GoXRef.Type

java.lang.Object
  extended by java.lang.Enum<GoXRef.Type>
      extended by org.forester.go.GoXRef.Type
All Implemented Interfaces:
Serializable, Comparable<GoXRef.Type>
Enclosing interface:
GoXRef

public static enum GoXRef.Type
extends Enum<GoXRef.Type>


Enum Constant Summary
ARACYC
           
EC
           
GOC
           
IMG
           
KEGG
           
META_CYC
           
PMID
           
REACTOME
           
RESID
           
TC
           
UM_BBD_ENZYME_ID
           
UM_BBD_PATHWAY_ID
           
UM_BBD_REACTIONID
           
WIKIPEDIA
           
XX
           
 
Method Summary
static GoXRef.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GoXRef.Type[] 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

EC

public static final GoXRef.Type EC

META_CYC

public static final GoXRef.Type META_CYC

REACTOME

public static final GoXRef.Type REACTOME

RESID

public static final GoXRef.Type RESID

UM_BBD_ENZYME_ID

public static final GoXRef.Type UM_BBD_ENZYME_ID

UM_BBD_PATHWAY_ID

public static final GoXRef.Type UM_BBD_PATHWAY_ID

UM_BBD_REACTIONID

public static final GoXRef.Type UM_BBD_REACTIONID

TC

public static final GoXRef.Type TC

ARACYC

public static final GoXRef.Type ARACYC

XX

public static final GoXRef.Type XX

PMID

public static final GoXRef.Type PMID

IMG

public static final GoXRef.Type IMG

GOC

public static final GoXRef.Type GOC

WIKIPEDIA

public static final GoXRef.Type WIKIPEDIA

KEGG

public static final GoXRef.Type KEGG
Method Detail

values

public static GoXRef.Type[] 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 (GoXRef.Type c : GoXRef.Type.values())
    System.out.println(c);

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

valueOf

public static GoXRef.Type 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