|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FastqVariant>
org.biojava.bio.program.fastq.FastqVariant
public enum FastqVariant
FASTQ sequence format variant.
| Enum Constant Summary | |
|---|---|
FASTQ_ILLUMINA
Illumina FASTQ sequence format variant. |
|
FASTQ_SANGER
Sanger FASTQ sequence format variant. |
|
FASTQ_SOLEXA
Solexa FASTQ sequence format variant. |
|
| Method Summary | |
|---|---|
java.lang.String |
getDescription()
Return the description of this FASTQ sequence format variant. |
boolean |
isIllumina()
Return true if this FASTQ sequence format variant is FASTQ_ILLUMINA. |
boolean |
isSanger()
Return true if this FASTQ sequence format variant is FASTQ_SANGER. |
boolean |
isSolexa()
Return true if this FASTQ sequence format variant is FASTQ_SOLEXA. |
java.lang.String |
lowercaseName()
Return the name of this FASTQ sequence format variant in lowercase-with-dashes style. |
static FastqVariant |
parseFastqVariant(java.lang.String name)
Return the FASTQ sequence format variant with the specified name, if any. |
static FastqVariant |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FastqVariant[] |
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 |
|---|
public static final FastqVariant FASTQ_SANGER
public static final FastqVariant FASTQ_SOLEXA
public static final FastqVariant FASTQ_ILLUMINA
| Method Detail |
|---|
public static FastqVariant[] values()
for (FastqVariant c : FastqVariant.values()) System.out.println(c);
public static FastqVariant valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String getDescription()
public boolean isSanger()
FASTQ_SANGER.
FASTQ_SANGERpublic boolean isSolexa()
FASTQ_SOLEXA.
FASTQ_SOLEXApublic boolean isIllumina()
FASTQ_ILLUMINA.
FASTQ_ILLUMINApublic java.lang.String lowercaseName()
lowercase-with-dashes style.
lowercase-with-dashes stylepublic static FastqVariant parseFastqVariant(java.lang.String name)
UPPERCASE_WITH_UNDERSCORES
or lowercase-with-dashes style.
name - name
null
if no such FASTQ sequence format variant exists
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||