public static enum DNASequence.DNAType extends java.lang.Enum<DNASequence.DNAType>
Enum Constant | Description |
---|---|
CHROMOSOME |
|
MITOCHONDRIAL |
|
PLASMID |
|
PLASTID |
|
UNKNOWN |
Modifier and Type | Method | Description |
---|---|---|
static DNASequence.DNAType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DNASequence.DNAType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DNASequence.DNAType CHROMOSOME
public static final DNASequence.DNAType MITOCHONDRIAL
public static final DNASequence.DNAType PLASMID
public static final DNASequence.DNAType PLASTID
public static final DNASequence.DNAType UNKNOWN
public static DNASequence.DNAType[] values()
for (DNASequence.DNAType c : DNASequence.DNAType.values()) System.out.println(c);
public static DNASequence.DNAType 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 namejava.lang.NullPointerException
- if the argument is null