org.biopax.paxtools.model.level2
Enum ControlType

java.lang.Object
  extended by java.lang.Enum<ControlType>
      extended by org.biopax.paxtools.model.level2.ControlType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ControlType>

public enum ControlType
extends java.lang.Enum<ControlType>

User: root Date: Aug 1, 2006 Time: 5:37:34 PM_DOT


Enum Constant Summary
ACTIVATION
           
ACTIVATION_ALLOSTERIC
           
ACTIVATION_NONALLOSTERIC
           
ACTIVATION_UNKMECH
           
INHIBITION
           
INHIBITION_ALLOSTERIC
           
INHIBITION_COMPETITIVE
           
INHIBITION_IRREVERSIBLE
           
INHIBITION_NONCOMPETITIVE
           
INHIBITION_OTHER
           
INHIBITION_UNCOMPETITIVE
           
INHIBITION_UNKMECH
           
 
Method Summary
static ControlType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ControlType[] 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

ACTIVATION

public static final ControlType ACTIVATION

INHIBITION

public static final ControlType INHIBITION

ACTIVATION_UNKMECH

public static final ControlType ACTIVATION_UNKMECH

INHIBITION_UNKMECH

public static final ControlType INHIBITION_UNKMECH

INHIBITION_ALLOSTERIC

public static final ControlType INHIBITION_ALLOSTERIC

INHIBITION_COMPETITIVE

public static final ControlType INHIBITION_COMPETITIVE

INHIBITION_IRREVERSIBLE

public static final ControlType INHIBITION_IRREVERSIBLE

INHIBITION_NONCOMPETITIVE

public static final ControlType INHIBITION_NONCOMPETITIVE

INHIBITION_OTHER

public static final ControlType INHIBITION_OTHER

INHIBITION_UNCOMPETITIVE

public static final ControlType INHIBITION_UNCOMPETITIVE

ACTIVATION_NONALLOSTERIC

public static final ControlType ACTIVATION_NONALLOSTERIC

ACTIVATION_ALLOSTERIC

public static final ControlType ACTIVATION_ALLOSTERIC
Method Detail

values

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

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

valueOf

public static ControlType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2011 BioPAX. All Rights Reserved.