public enum NucleotideEnd extends Enum<NucleotideEnd>
Enum Constant and Description |
---|
FIVE_PRIME |
THREE_PRIME |
Modifier and Type | Method and Description |
---|---|
String |
getAbbrev() |
static NucleotideEnd |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NucleotideEnd[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NucleotideEnd FIVE_PRIME
public static final NucleotideEnd THREE_PRIME
public static NucleotideEnd[] values()
for (NucleotideEnd c : NucleotideEnd.values()) System.out.println(c);
public static NucleotideEnd 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 null