Package org.snpeff.interval
Enum GffType
- java.lang.Object
-
- java.lang.Enum<GffType>
-
- org.snpeff.interval.GffType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CDS
EXON
GENE
INTERGENIC_CONSERVED
INTRON_CONSERVED
START_CODON
STOP_CODON
TRANSCRIPT
UNKNOWN
UTR3
UTR5
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GffType
parse(java.lang.String str)
static GffType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GffType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENE
public static final GffType GENE
-
TRANSCRIPT
public static final GffType TRANSCRIPT
-
EXON
public static final GffType EXON
-
CDS
public static final GffType CDS
-
START_CODON
public static final GffType START_CODON
-
STOP_CODON
public static final GffType STOP_CODON
-
UTR5
public static final GffType UTR5
-
UTR3
public static final GffType UTR3
-
INTRON_CONSERVED
public static final GffType INTRON_CONSERVED
-
INTERGENIC_CONSERVED
public static final GffType INTERGENIC_CONSERVED
-
UNKNOWN
public static final GffType UNKNOWN
-
-
Method Detail
-
values
public static GffType[] 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 (GffType c : GffType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GffType 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 namejava.lang.NullPointerException
- if the argument is null
-
parse
public static GffType parse(java.lang.String str)
-
-