public enum EnumCM_PrimaryCauseOfDeath extends java.lang.Enum<EnumCM_PrimaryCauseOfDeath>
| Enum Constant and Description |
|---|
CARDIAC |
INFECTION |
NEUROLOGIC |
OTHER |
PULMONARY |
RENAL |
VALVULAR |
VASCULAR |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_PrimaryCauseOfDeath |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_PrimaryCauseOfDeath[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_PrimaryCauseOfDeath CARDIAC
public static final EnumCM_PrimaryCauseOfDeath NEUROLOGIC
public static final EnumCM_PrimaryCauseOfDeath RENAL
public static final EnumCM_PrimaryCauseOfDeath VASCULAR
public static final EnumCM_PrimaryCauseOfDeath INFECTION
public static final EnumCM_PrimaryCauseOfDeath PULMONARY
public static final EnumCM_PrimaryCauseOfDeath VALVULAR
public static final EnumCM_PrimaryCauseOfDeath OTHER
public static EnumCM_PrimaryCauseOfDeath[] values()
for (EnumCM_PrimaryCauseOfDeath c : EnumCM_PrimaryCauseOfDeath.values()) System.out.println(c);
public static EnumCM_PrimaryCauseOfDeath 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()