public enum BLAST_Program extends Enum<BLAST_Program>
Enum Constant and Description |
---|
blastn |
blastp |
blastx |
tblastn |
tblastx |
Modifier and Type | Method and Description |
---|---|
BioSequenceType |
getDatabaseBioSequenceType() |
String |
getDescription() |
BioSequenceType |
getQueryBioSequenceType() |
static BLAST_Program |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BLAST_Program[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BLAST_Program blastn
public static final BLAST_Program blastp
public static final BLAST_Program blastx
public static final BLAST_Program tblastn
public static final BLAST_Program tblastx
public static BLAST_Program[] values()
for (BLAST_Program c : BLAST_Program.values()) System.out.println(c);
public static BLAST_Program valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic BioSequenceType getQueryBioSequenceType()
public BioSequenceType getDatabaseBioSequenceType()
public String getDescription()
jataylor@hairyfatguy.com