org.biopax.paxtools.model.level2
Enum ControlType
java.lang.Object
java.lang.Enum<ControlType>
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
|
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 |
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
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.