org.utgenome.format.gff3
Enum SOFA

java.lang.Object
  extended by java.lang.Enum<SOFA>
      extended by org.utgenome.format.gff3.SOFA
All Implemented Interfaces:
Serializable, Comparable<SOFA>

public enum SOFA
extends Enum<SOFA>

SOFA names used in the GFF3 type column

Author:
leo

Enum Constant Summary
cds
           
exon
           
five_primve_utr
           
gene
           
intron
           
mRNA
           
ployA_site
           
polyA_sequence
           
three_primve_utr
           
 
Method Summary
static SOFA valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SOFA[] 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

gene

public static final SOFA gene

intron

public static final SOFA intron

mRNA

public static final SOFA mRNA

exon

public static final SOFA exon

cds

public static final SOFA cds

polyA_sequence

public static final SOFA polyA_sequence

ployA_site

public static final SOFA ployA_site

five_primve_utr

public static final SOFA five_primve_utr

three_primve_utr

public static final SOFA three_primve_utr
Method Detail

values

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

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

valueOf

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


Copyright © 2007-2012 utgenome.org. All Rights Reserved.