Package org.forester.phylogeny
Enum PhylogenyMethods.PhylogenyNodeField
- java.lang.Object
-
- java.lang.Enum<PhylogenyMethods.PhylogenyNodeField>
-
- org.forester.phylogeny.PhylogenyMethods.PhylogenyNodeField
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PhylogenyMethods.PhylogenyNodeField>
- Enclosing class:
- PhylogenyMethods
public static enum PhylogenyMethods.PhylogenyNodeField extends java.lang.Enum<PhylogenyMethods.PhylogenyNodeField>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLADE_NAME
SEQUENCE_NAME
SEQUENCE_SYMBOL
TAXONOMY_CODE
TAXONOMY_COMMON_NAME
TAXONOMY_ID
TAXONOMY_ID_UNIPROT_1
TAXONOMY_ID_UNIPROT_2
TAXONOMY_SCIENTIFIC_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PhylogenyMethods.PhylogenyNodeField
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PhylogenyMethods.PhylogenyNodeField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLADE_NAME
public static final PhylogenyMethods.PhylogenyNodeField CLADE_NAME
-
SEQUENCE_NAME
public static final PhylogenyMethods.PhylogenyNodeField SEQUENCE_NAME
-
SEQUENCE_SYMBOL
public static final PhylogenyMethods.PhylogenyNodeField SEQUENCE_SYMBOL
-
TAXONOMY_CODE
public static final PhylogenyMethods.PhylogenyNodeField TAXONOMY_CODE
-
TAXONOMY_COMMON_NAME
public static final PhylogenyMethods.PhylogenyNodeField TAXONOMY_COMMON_NAME
-
TAXONOMY_ID
public static final PhylogenyMethods.PhylogenyNodeField TAXONOMY_ID
-
TAXONOMY_ID_UNIPROT_1
public static final PhylogenyMethods.PhylogenyNodeField TAXONOMY_ID_UNIPROT_1
-
TAXONOMY_ID_UNIPROT_2
public static final PhylogenyMethods.PhylogenyNodeField TAXONOMY_ID_UNIPROT_2
-
TAXONOMY_SCIENTIFIC_NAME
public static final PhylogenyMethods.PhylogenyNodeField TAXONOMY_SCIENTIFIC_NAME
-
-
Method Detail
-
values
public static PhylogenyMethods.PhylogenyNodeField[] 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 (PhylogenyMethods.PhylogenyNodeField c : PhylogenyMethods.PhylogenyNodeField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PhylogenyMethods.PhylogenyNodeField 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
-
-