public enum EnumCM_ClinicalContextECG extends java.lang.Enum<EnumCM_ClinicalContextECG>
| Enum Constant and Description |
|---|
CLINICAL_CONTEXT |
HISTORY |
PACEMAKER_IN_SITU |
PATIENT_STATE |
REASON_FOR_EXAM |
REGULAR_MEDICATION |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_ClinicalContextECG |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_ClinicalContextECG[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_ClinicalContextECG CLINICAL_CONTEXT
public static final EnumCM_ClinicalContextECG REASON_FOR_EXAM
public static final EnumCM_ClinicalContextECG PATIENT_STATE
public static final EnumCM_ClinicalContextECG REGULAR_MEDICATION
public static final EnumCM_ClinicalContextECG PACEMAKER_IN_SITU
public static final EnumCM_ClinicalContextECG HISTORY
public static EnumCM_ClinicalContextECG[] values()
for (EnumCM_ClinicalContextECG c : EnumCM_ClinicalContextECG.values()) System.out.println(c);
public static EnumCM_ClinicalContextECG 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()