Package org.openscience.cdk.interfaces
Enum Class IReaction.Direction
- All Implemented Interfaces:
Serializable,Comparable<IReaction.Direction>,Constable
- Enclosing interface:
- IReaction
Permissible reaction directions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReaction equilibrium which is (almost) fully on the reactant side.Reaction equilibrium state.Reaction equilibrium which is (almost) fully on the product side.Reaction is a no-go, Often denoted by a cross or hash arrow.Reaction shows interconversion between resonance forms.Indicate the precursors for a given molecule, note this will make swap where reactant/products appear.Reaction equilibrium is not known to be fully on reactant/product or in equilibrium state. -
Method Summary
Modifier and TypeMethodDescriptionstatic IReaction.DirectionReturns the enum constant of this class with the specified name.static IReaction.Direction[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FORWARD
Reaction equilibrium which is (almost) fully on the product side. Often denoted with a forward arrow. -
BACKWARD
Reaction equilibrium which is (almost) fully on the reactant side. Often denoted with a backward arrow. -
BIDIRECTIONAL
Reaction equilibrium state. Often denoted by a stacked arrows, one forwards, one backwards. -
NO_GO
Reaction is a no-go, Often denoted by a cross or hash arrow. -
RETRO_SYNTHETIC
Indicate the precursors for a given molecule, note this will make swap where reactant/products appear. Usually denoted with an open arrow. -
RESONANCE
Reaction shows interconversion between resonance forms. Usually denoted by a double-headed arrow. -
UNDIRECTED
Reaction equilibrium is not known to be fully on reactant/product or in equilibrium state. Also used to represent a "net reaction" composed of several elementary steps. Often denoted by a "=" sign
-
-
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
-