public enum EnumStageName extends java.lang.Enum<EnumStageName>
| Enum Constant and Description |
|---|
BASELINE
The BASELINE.
|
LOW_DOSE
The LO w_ dose.
|
PEAK_DOSE
The PEA k_ dose.
|
PEAK_EXERCISE
The PEA k_ exercise.
|
POST_EXERCISE
The POS t_ exercise.
|
PRE_EXERCISE
The PR e_ exercise.
|
RECOVERY
The RECOVERY.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumStageName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumStageName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumStageName PRE_EXERCISE
public static final EnumStageName POST_EXERCISE
public static final EnumStageName PEAK_EXERCISE
public static final EnumStageName RECOVERY
public static final EnumStageName BASELINE
public static final EnumStageName LOW_DOSE
public static final EnumStageName PEAK_DOSE
public static EnumStageName[] values()
for (EnumStageName c : EnumStageName.values()) System.out.println(c);
public static EnumStageName valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()