public enum EnumCM_AbstractPriors extends java.lang.Enum<EnumCM_AbstractPriors>
| Enum Constant and Description |
|---|
AT_LAST_APPOINTMENT |
INTRAOPERATIVE |
ON_ADMISSION |
ON_ADMISSION_TO_UNIT |
ON_DISCHARGE |
ON_DISCHARGE_FROM_UNIT |
POST_DOSE |
POST_INTERVENTION |
POST_OPERATIVE |
PRE_ADMISSION |
PRE_DOSE |
PRE_INTERVENTION |
PRE_OPERATIVE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_AbstractPriors |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_AbstractPriors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_AbstractPriors ON_ADMISSION
public static final EnumCM_AbstractPriors INTRAOPERATIVE
public static final EnumCM_AbstractPriors PRE_ADMISSION
public static final EnumCM_AbstractPriors PRE_DOSE
public static final EnumCM_AbstractPriors POST_DOSE
public static final EnumCM_AbstractPriors PRE_OPERATIVE
public static final EnumCM_AbstractPriors POST_OPERATIVE
public static final EnumCM_AbstractPriors ON_ADMISSION_TO_UNIT
public static final EnumCM_AbstractPriors ON_DISCHARGE
public static final EnumCM_AbstractPriors ON_DISCHARGE_FROM_UNIT
public static final EnumCM_AbstractPriors PRE_INTERVENTION
public static final EnumCM_AbstractPriors POST_INTERVENTION
public static final EnumCM_AbstractPriors AT_LAST_APPOINTMENT
public static EnumCM_AbstractPriors[] values()
for (EnumCM_AbstractPriors c : EnumCM_AbstractPriors.values()) System.out.println(c);
public static EnumCM_AbstractPriors 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()