org.forester.tools
Enum PhylogenyDecorator.FIELD

java.lang.Object
  extended by java.lang.Enum<PhylogenyDecorator.FIELD>
      extended by org.forester.tools.PhylogenyDecorator.FIELD
All Implemented Interfaces:
Serializable, Comparable<PhylogenyDecorator.FIELD>
Enclosing class:
PhylogenyDecorator

public static enum PhylogenyDecorator.FIELD
extends Enum<PhylogenyDecorator.FIELD>


Enum Constant Summary
DOMAIN_STRUCTURE
           
NODE_NAME
           
SEQUENCE_ANNOTATION_DESC
           
SEQUENCE_NAME
           
TAXONOMY_CODE
           
TAXONOMY_SCIENTIFIC_NAME
           
 
Method Summary
static PhylogenyDecorator.FIELD valueOf(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.
 
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

NODE_NAME

public static final PhylogenyDecorator.FIELD NODE_NAME

SEQUENCE_ANNOTATION_DESC

public static final PhylogenyDecorator.FIELD SEQUENCE_ANNOTATION_DESC

DOMAIN_STRUCTURE

public static final PhylogenyDecorator.FIELD DOMAIN_STRUCTURE

TAXONOMY_CODE

public static final PhylogenyDecorator.FIELD TAXONOMY_CODE

TAXONOMY_SCIENTIFIC_NAME

public static final PhylogenyDecorator.FIELD TAXONOMY_SCIENTIFIC_NAME

SEQUENCE_NAME

public static final PhylogenyDecorator.FIELD SEQUENCE_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(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