org.utgenome.format.gff3
Enum SOFA
java.lang.Object
java.lang.Enum<SOFA>
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
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. |
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
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.