public static enum IReaction.Direction extends Enum<IReaction.Direction>
Enum Constant and Description |
---|
BACKWARD
Reaction equilibrium which is (almost) fully on the reactant side.
|
BIDIRECTIONAL
Reaction equilibrium state.
|
FORWARD
Reaction equilibrium which is (almost) fully on the product side.
|
Modifier and Type | Method and Description |
---|---|
static IReaction.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IReaction.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IReaction.Direction FORWARD
public static final IReaction.Direction BACKWARD
public static final IReaction.Direction BIDIRECTIONAL
public static IReaction.Direction[] values()
for (IReaction.Direction c : IReaction.Direction.values()) System.out.println(c);
public static IReaction.Direction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018. All Rights Reserved.