Package org.forester.phylogeny.data
Enum NodeDataField
- java.lang.Object
-
- java.lang.Enum<NodeDataField>
-
- org.forester.phylogeny.data.NodeDataField
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NodeDataField>
public enum NodeDataField extends java.lang.Enum<NodeDataField>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOMAINS_ALL
DOMAINS_COLLAPSED_PER_PROTEIN
EVENT
GENE_NAME
GO_TERM_IDS
NODE_NAME
SEQ_ANNOTATIONS
SEQUENCE_ACC
SEQUENCE_MOL_SEQ_FASTA
SEQUENCE_NAME
SEQUENCE_SYMBOL
TAXONOMY_CODE
TAXONOMY_SCIENTIFIC_NAME
UNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static NodeDataField
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NodeDataField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NODE_NAME
public static final NodeDataField NODE_NAME
-
EVENT
public static final NodeDataField EVENT
-
SEQUENCE_NAME
public static final NodeDataField SEQUENCE_NAME
-
GENE_NAME
public static final NodeDataField GENE_NAME
-
SEQUENCE_SYMBOL
public static final NodeDataField SEQUENCE_SYMBOL
-
SEQUENCE_MOL_SEQ_FASTA
public static final NodeDataField SEQUENCE_MOL_SEQ_FASTA
-
SEQUENCE_ACC
public static final NodeDataField SEQUENCE_ACC
-
TAXONOMY_SCIENTIFIC_NAME
public static final NodeDataField TAXONOMY_SCIENTIFIC_NAME
-
TAXONOMY_CODE
public static final NodeDataField TAXONOMY_CODE
-
UNKNOWN
public static final NodeDataField UNKNOWN
-
GO_TERM_IDS
public static final NodeDataField GO_TERM_IDS
-
SEQ_ANNOTATIONS
public static final NodeDataField SEQ_ANNOTATIONS
-
DOMAINS_ALL
public static final NodeDataField DOMAINS_ALL
-
DOMAINS_COLLAPSED_PER_PROTEIN
public static final NodeDataField DOMAINS_COLLAPSED_PER_PROTEIN
-
-
Method Detail
-
values
public static NodeDataField[] 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 (NodeDataField c : NodeDataField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeDataField 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<NodeDataField>
-
-