public enum EnumCM_CardiacPhase extends java.lang.Enum<EnumCM_CardiacPhase>
| Enum Constant and Description |
|---|
ATRIAL_SYSTOLE |
DIASTASIS |
DIASTOLE |
DIASTOLIC_RAPID_INFLOW |
EARLY_DIASTOLE |
END_DIASTOLE |
END_SYSTOLE |
PEAK_SYSTOLIC |
SYSTOLE |
VENTRICULAR_EJECTION |
VENTRICULAR_ISOVOLUMIC_CONTRACTION |
VENTRICULAR_ISOVOLUMIC_RELAXATION |
VENTRICULAR_SYSTOLE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_CardiacPhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_CardiacPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_CardiacPhase SYSTOLE
public static final EnumCM_CardiacPhase DIASTOLE
public static final EnumCM_CardiacPhase END_DIASTOLE
public static final EnumCM_CardiacPhase END_SYSTOLE
public static final EnumCM_CardiacPhase EARLY_DIASTOLE
public static final EnumCM_CardiacPhase PEAK_SYSTOLIC
public static final EnumCM_CardiacPhase ATRIAL_SYSTOLE
public static final EnumCM_CardiacPhase VENTRICULAR_SYSTOLE
public static final EnumCM_CardiacPhase VENTRICULAR_ISOVOLUMIC_CONTRACTION
public static final EnumCM_CardiacPhase VENTRICULAR_EJECTION
public static final EnumCM_CardiacPhase VENTRICULAR_ISOVOLUMIC_RELAXATION
public static final EnumCM_CardiacPhase DIASTOLIC_RAPID_INFLOW
public static final EnumCM_CardiacPhase DIASTASIS
public static EnumCM_CardiacPhase[] values()
for (EnumCM_CardiacPhase c : EnumCM_CardiacPhase.values()) System.out.println(c);
public static EnumCM_CardiacPhase 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()