fr.orsay.lri.varna.models.rna
Enum ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES

java.lang.Object
  extended by java.lang.Enum<ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES>
      extended by fr.orsay.lri.varna.models.rna.ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES
All Implemented Interfaces:
Serializable, Comparable<ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES>
Enclosing class:
ModeleBaseNucleotide

private static enum ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES
extends Enum<ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES>


Enum Constant Summary
COMMAND
           
NORMAL
           
SUBSCRIPT
           
SUPERSCRIPT
           
 
Method Summary
static ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES[] 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

NORMAL

public static final ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES NORMAL

SUBSCRIPT

public static final ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES SUBSCRIPT

SUPERSCRIPT

public static final ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES SUPERSCRIPT

COMMAND

public static final ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES COMMAND
Method Detail

values

public static ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES[] 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 (ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES c : ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES.values())
    System.out.println(c);

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

valueOf

public static ModeleBaseNucleotide.STATE_SPECIAL_CHARS_STATES 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