org.biojava3.aaproperties.profeat
Enum IProfeatProperties.TRANSITION

java.lang.Object
  extended by java.lang.Enum<IProfeatProperties.TRANSITION>
      extended by org.biojava3.aaproperties.profeat.IProfeatProperties.TRANSITION
All Implemented Interfaces:
Serializable, Comparable<IProfeatProperties.TRANSITION>
Enclosing interface:
IProfeatProperties

public static enum IProfeatProperties.TRANSITION
extends Enum<IProfeatProperties.TRANSITION>

Enumeration of the transition between groupA and groupB


Enum Constant Summary
BETWEEN_11
           
BETWEEN_12
           
BETWEEN_13
           
BETWEEN_22
           
BETWEEN_23
           
BETWEEN_33
           
 
Method Summary
static IProfeatProperties.TRANSITION valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IProfeatProperties.TRANSITION[] 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

BETWEEN_11

public static final IProfeatProperties.TRANSITION BETWEEN_11

BETWEEN_22

public static final IProfeatProperties.TRANSITION BETWEEN_22

BETWEEN_33

public static final IProfeatProperties.TRANSITION BETWEEN_33

BETWEEN_12

public static final IProfeatProperties.TRANSITION BETWEEN_12

BETWEEN_13

public static final IProfeatProperties.TRANSITION BETWEEN_13

BETWEEN_23

public static final IProfeatProperties.TRANSITION BETWEEN_23
Method Detail

values

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

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

valueOf

public static IProfeatProperties.TRANSITION 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