public enum KineticsType extends Enum<KineticsType>
| Enum Constant and Description |
|---|
MassAction |
MichaelisMenten |
| Modifier and Type | Method and Description |
|---|---|
static KineticsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KineticsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KineticsType MassAction
public static final KineticsType MichaelisMenten
public static KineticsType[] values()
for (KineticsType c : KineticsType.values()) System.out.println(c);
public static KineticsType 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 © 2015. All Rights Reserved.