public enum EnumVisitStatusID extends java.lang.Enum<EnumVisitStatusID>
| Enum Constant and Description |
|---|
CREATED_BUT_NOT_SCHEDULED
The created_ but_ not_ scheduled.
|
PATIENT_ADMITTED_TO_INSTITUTION
The patient_ admitted_ to_ institution.
|
PATIENT_DISCHARGED
The patient_ discharged.
|
SCHEDULED_BUT_NOT_ADMITTED
The scheduled_ but_ not_ admitted.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumVisitStatusID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumVisitStatusID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumVisitStatusID CREATED_BUT_NOT_SCHEDULED
public static final EnumVisitStatusID SCHEDULED_BUT_NOT_ADMITTED
public static final EnumVisitStatusID PATIENT_ADMITTED_TO_INSTITUTION
public static final EnumVisitStatusID PATIENT_DISCHARGED
public static EnumVisitStatusID[] values()
for (EnumVisitStatusID c : EnumVisitStatusID.values()) System.out.println(c);
public static EnumVisitStatusID 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()