apollo.gui.detailviewers.sequencealigner
Enum Strand

java.lang.Object
  extended by java.lang.Enum<Strand>
      extended by apollo.gui.detailviewers.sequencealigner.Strand
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Strand>

public enum Strand
extends java.lang.Enum<Strand>


Enum Constant Summary
FORWARD
           
REVERSE
           
 
Method Summary
 Strand getOpposite()
           
 int toInt()
           
static Strand valueOf(int i)
           
static Strand valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Strand[] 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

FORWARD

public static final Strand FORWARD

REVERSE

public static final Strand REVERSE
Method Detail

values

public static final Strand[] 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(Strand c : Strand.values())
        System.out.println(c);

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

valueOf

public static Strand 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

getOpposite

public Strand getOpposite()

toInt

public int toInt()

valueOf

public static Strand valueOf(int i)