apollo.gui.detailviewers.sequencealigner.menus
Enum AddFilterPanel.TYPES

java.lang.Object
  extended by java.lang.Enum<AddFilterPanel.TYPES>
      extended by apollo.gui.detailviewers.sequencealigner.menus.AddFilterPanel.TYPES
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AddFilterPanel.TYPES>
Enclosing class:
AddFilterPanel

public static enum AddFilterPanel.TYPES
extends java.lang.Enum<AddFilterPanel.TYPES>


Enum Constant Summary
FRAME
           
NAME
           
SCORE
           
STRAND
           
TYPE
           
 
Method Summary
static AddFilterPanel.TYPES valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AddFilterPanel.TYPES[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STRAND

public static final AddFilterPanel.TYPES STRAND

FRAME

public static final AddFilterPanel.TYPES FRAME

TYPE

public static final AddFilterPanel.TYPES TYPE

SCORE

public static final AddFilterPanel.TYPES SCORE

NAME

public static final AddFilterPanel.TYPES NAME
Method Detail

values

public static final AddFilterPanel.TYPES[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AddFilterPanel.TYPES c : AddFilterPanel.TYPES.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static AddFilterPanel.TYPES 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 name