public enum KineticParameterType extends Enum<KineticParameterType>
| Enum Constant and Description |
|---|
CATALYTIC_CONSTANT |
HILL_COEFFICIENT |
INHIBITORY_CONSTANT |
MAXIMAL_VELOCITY |
MICHAELIS_CONSTANT |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
Class<?> |
getQuantity() |
String |
getSymbol() |
static KineticParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KineticParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KineticParameterType HILL_COEFFICIENT
public static final KineticParameterType MICHAELIS_CONSTANT
public static final KineticParameterType INHIBITORY_CONSTANT
public static final KineticParameterType CATALYTIC_CONSTANT
public static final KineticParameterType MAXIMAL_VELOCITY
public static KineticParameterType[] values()
for (KineticParameterType c : KineticParameterType.values()) System.out.println(c);
public static KineticParameterType 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 nullpublic String getName()
public String getSymbol()
public Class<?> getQuantity()
Copyright © 2017. All rights reserved.