Package org.biopax.paxtools.model.level3
Enum Class CatalysisDirectionType
- All Implemented Interfaces:
Serializable,Comparable<CatalysisDirectionType>,Constable
This enum represents the direction of a catalysis under all physiological conditions if there is one.
Note that chemically a catalyst will increase the rate of the reaction in both directions. In biology,
however, there are cases where the enzyme is expressed only when the controlled bidirectional conversion is
on one side of the chemical equilibrium. olled bidirectional conversion is on one side of the chemical
equilibrium. For example E.Coli's lac operon ensures that lacZ gene is only synthesized when there is enough
lactose in the medium. If that is the case and the controller, under biological conditions,
is always catalyzing the conversion in one direction then this fact can be captured using this property. If
the enzyme is active for both directions, or the conversion is not bidirectional,
this property should be left empty.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic CatalysisDirectionTypeReturns the enum constant of this class with the specified name.static CatalysisDirectionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LEFT_TO_RIGHT
-
RIGHT_TO_LEFT
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-