public enum EnumSection extends java.lang.Enum<EnumSection>
| Enum Constant and Description |
|---|
ADVANCE_DIRECTIVE
This constant specifies Section Name of Advance Directive Section
|
ALERTS
This constant specifies Section Name of Alert Section
|
AUTHOR
This constant specifies Section Name of Author Section
|
CUSTODIAN
This constant specifies Section Name of Custodian Section
|
DOCUMENT_GENERATOR
This constant specifies Section Name of Document Generator Section
|
ENCOUNTERS
This constant specifies Section Name of Encounters Section
|
FAMILY_HISTORY
This constant specifies Section Name of Family History Section
|
FUNCTIONAL_STATUS
This constant specifies Section Name of Functional Status Section
|
HEADER
This constant specifies Section Name of Header Section
|
IMMUNIZATION
This constant specifies Section Name of Immunizations Section
|
LEGAL_AUTHENTICATOR
This constant specifies Section Name of Legal Authenticator Section
|
MEDICAL_EQUIPMENT
This constant specifies Section Name of Medical Equipment Section
|
MEDICATIONS
This constant specifies Section Name of Medications Section
|
PAYERS
This constant specifies Section Name of Payers Section
|
PLAN
This constant specifies Section Name of Plan Section
|
PROBLEMS
This constant specifies Section Name of Problems Section
|
PROCEDURES
This constant specifies Section Name of Procedures Section
|
RESULTS
This constant specifies Section Name of Results Section
|
SOCIAL_HISTORY
This constant specifies Section Name of Social History Section
|
SUMMARY_PURPOSE
This constant specifies Section Name of Summary Purpose Section
|
VITAL_SIGNS
This constant specifies Section Name of Vital Signs Section
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumSection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumSection SOCIAL_HISTORY
public static final EnumSection CUSTODIAN
public static final EnumSection AUTHOR
public static final EnumSection LEGAL_AUTHENTICATOR
public static final EnumSection RESULTS
public static final EnumSection HEADER
public static final EnumSection DOCUMENT_GENERATOR
public static final EnumSection ADVANCE_DIRECTIVE
public static final EnumSection ALERTS
public static final EnumSection ENCOUNTERS
public static final EnumSection FUNCTIONAL_STATUS
public static final EnumSection IMMUNIZATION
public static final EnumSection MEDICAL_EQUIPMENT
public static final EnumSection MEDICATIONS
public static final EnumSection PAYERS
public static final EnumSection PLAN
public static final EnumSection PROBLEMS
public static final EnumSection PROCEDURES
public static final EnumSection SUMMARY_PURPOSE
public static final EnumSection VITAL_SIGNS
public static final EnumSection FAMILY_HISTORY
public static EnumSection[] values()
for (EnumSection c : EnumSection.values()) System.out.println(c);
public static EnumSection 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()