Package org.openscience.cdk.interfaces
Enum Class IReaction.Direction
- All Implemented Interfaces:
Serializable
,Comparable<IReaction.Direction>
,java.lang.constant.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. -
Method Summary
Modifier and TypeMethodDescriptionstatic IReaction.Direction
Returns 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 double arrow.
-
-
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
-