public enum EnumHealthInformationSystem extends java.lang.Enum<EnumHealthInformationSystem>
| Enum Constant and Description |
|---|
CLINICAL_LABORATERY
Enum to Clinical Laboratery System
|
FINANCIAL_MANAGEMENT
Enum to Financial Management System
|
PATIENT_ADMINISTRATION
Enum Patient Administration System
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the Integer value of this enum.
|
static EnumHealthInformationSystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumHealthInformationSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumHealthInformationSystem PATIENT_ADMINISTRATION
public static final EnumHealthInformationSystem FINANCIAL_MANAGEMENT
public static final EnumHealthInformationSystem CLINICAL_LABORATERY
public static EnumHealthInformationSystem[] values()
for (EnumHealthInformationSystem c : EnumHealthInformationSystem.values()) System.out.println(c);
public static EnumHealthInformationSystem 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()