public static enum DNASequence.DNAType extends Enum<DNASequence.DNAType>
Enum Constant and Description |
---|
CHROMOSOME |
MITOCHONDRIAL |
PLASMID |
PLASTID |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static DNASequence.DNAType |
valueOf(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(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 nullCopyright © 2000–2016 BioJava. All rights reserved.