Serializable
, Comparable<FastqReader.LineType>
protected static enum FastqReader.LineType extends Enum<FastqReader.LineType>
Enum Constant | Description |
---|---|
QualityHeader |
|
QualityLine |
|
SequenceHeader |
|
SequenceLine |
Modifier and Type | Method | Description |
---|---|---|
String |
toString() |
|
static FastqReader.LineType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static FastqReader.LineType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FastqReader.LineType SequenceHeader
public static final FastqReader.LineType SequenceLine
public static final FastqReader.LineType QualityHeader
public static final FastqReader.LineType QualityLine
public static FastqReader.LineType[] values()
for (FastqReader.LineType c : FastqReader.LineType.values()) System.out.println(c);
public static FastqReader.LineType 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 String toString()
toString
in class Enum<FastqReader.LineType>