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