|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BasePair>
BasePair
public enum BasePair
Enumeration of the possible base pairs - two nucleotides on opposite complementary RNA strands that are connected via hydrogen bonds.
The six basepairs are:
5' g c g u a u 3' | | | | | | 3' c g u g u a 5'The base pair GC:
5' g 3' | 3' c 5'So the first nucleotide is the top one and the second the bottom one.
See also http://2008.igem.org/Team:TUDelft/Temperature_software
Nucleotide
Enum Constant Summary | |
---|---|
AU
|
|
CG
|
|
GC
|
|
GU
|
|
UA
|
|
UG
|
Method Summary | |
---|---|
Nucleotide |
getBottom()
Returns the nucleotide at the bottom of the base pair. |
Nucleotide |
getTop()
Returns the nucleotide at the top of the base pair. |
static BasePair |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BasePair[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BasePair GC
public static final BasePair CG
public static final BasePair GU
public static final BasePair UG
public static final BasePair AU
public static final BasePair UA
Method Detail |
---|
public static BasePair[] values()
for (BasePair c : BasePair.values()) System.out.println(c);
public static BasePair 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 name
java.lang.NullPointerException
- if the argument is nullpublic Nucleotide getTop()
public Nucleotide getBottom()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |