public enum Nucleotide extends java.lang.Enum<Nucleotide>
Enum Constant and Description |
---|
a |
A |
ADENINE |
c |
C |
CYTOSINE |
g |
G |
GUANINE |
t |
T |
THYMINE |
u |
U |
URACIL |
Modifier and Type | Method and Description |
---|---|
static Nucleotide |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Nucleotide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Nucleotide A
public static final Nucleotide a
public static final Nucleotide ADENINE
public static final Nucleotide T
public static final Nucleotide t
public static final Nucleotide THYMINE
public static final Nucleotide U
public static final Nucleotide u
public static final Nucleotide URACIL
public static final Nucleotide G
public static final Nucleotide g
public static final Nucleotide GUANINE
public static final Nucleotide C
public static final Nucleotide c
public static final Nucleotide CYTOSINE
public static Nucleotide[] values()
for (Nucleotide c : Nucleotide.values()) System.out.println(c);
public static Nucleotide 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