fr.orsay.lri.varna.models.templates
Enum RNATemplate.In1Is

java.lang.Object
  extended by java.lang.Enum<RNATemplate.In1Is>
      extended by fr.orsay.lri.varna.models.templates.RNATemplate.In1Is
All Implemented Interfaces:
Serializable, Comparable<RNATemplate.In1Is>
Enclosing class:
RNATemplate

public static enum RNATemplate.In1Is
extends Enum<RNATemplate.In1Is>

For an helix, tells us whether IN1/OUT1 is the 5' strand (the first strand we meet if we follow the RNA sequence) or the 3' strand (the second we meet if we follow the RNA sequence).


Enum Constant Summary
IN1_IS_3PRIME
           
IN1_IS_5PRIME
           
 
Method Summary
static RNATemplate.In1Is valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RNATemplate.In1Is[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

IN1_IS_5PRIME

public static final RNATemplate.In1Is IN1_IS_5PRIME

IN1_IS_3PRIME

public static final RNATemplate.In1Is IN1_IS_3PRIME
Method Detail

values

public static RNATemplate.In1Is[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RNATemplate.In1Is c : RNATemplate.In1Is.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RNATemplate.In1Is valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null