Package org.forester.go
Enum GoXRef.Type
- java.lang.Object
-
- java.lang.Enum<GoXRef.Type>
-
- org.forester.go.GoXRef.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GoXRef.Type>
- Enclosing interface:
- GoXRef
public static enum GoXRef.Type extends java.lang.Enum<GoXRef.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARACYC
CORUM
EC
GOC
IMG
KEGG
META_CYC
NIF_SUBCELLULAR
OTHER
PMID
PO
REACTOME
RESID
RHEA
SABIO_RK
TC
UM_BBD_ENZYME_ID
UM_BBD_PATHWAY_ID
UM_BBD_REACTIONID
UNIPATHWAY
WIKIPEDIA
XX
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GoXRef.Type
valueOf(java.lang.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.
-
-
-
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
-
RHEA
public static final GoXRef.Type RHEA
-
NIF_SUBCELLULAR
public static final GoXRef.Type NIF_SUBCELLULAR
-
CORUM
public static final GoXRef.Type CORUM
-
UNIPATHWAY
public static final GoXRef.Type UNIPATHWAY
-
PO
public static final GoXRef.Type PO
-
SABIO_RK
public static final GoXRef.Type SABIO_RK
-
OTHER
public static final GoXRef.Type OTHER
-
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-