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