public enum EnumCV_PrimaryCauseOfDeath extends java.lang.Enum<EnumCV_PrimaryCauseOfDeath>
| Enum Constant and Description |
|---|
CARDIAC_25_1 |
INFECTION_25_5 |
NEUROLOGIC_25_2 |
OTHER_25_8 |
PULMONARY_25_6 |
RENAL_25_3 |
VALVULAR_25_7 |
VASCULAR_25_4 |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_PrimaryCauseOfDeath |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_PrimaryCauseOfDeath[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_PrimaryCauseOfDeath CARDIAC_25_1
public static final EnumCV_PrimaryCauseOfDeath NEUROLOGIC_25_2
public static final EnumCV_PrimaryCauseOfDeath RENAL_25_3
public static final EnumCV_PrimaryCauseOfDeath VASCULAR_25_4
public static final EnumCV_PrimaryCauseOfDeath INFECTION_25_5
public static final EnumCV_PrimaryCauseOfDeath PULMONARY_25_6
public static final EnumCV_PrimaryCauseOfDeath VALVULAR_25_7
public static final EnumCV_PrimaryCauseOfDeath OTHER_25_8
public static EnumCV_PrimaryCauseOfDeath[] values()
for (EnumCV_PrimaryCauseOfDeath c : EnumCV_PrimaryCauseOfDeath.values()) System.out.println(c);
public static EnumCV_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()