public enum EnumClassCode extends java.lang.Enum<EnumClassCode>
| Enum Constant and Description |
|---|
CAREGIVER
This constant specifies value representation of Class Code caregiver
|
ECON
This constant specifies value representation of Class Code emergency contact
|
ENC
This constant specifies value representation of Class Code encounter
|
EVN
This constant specifies value representation of Class Code event
|
GUAR
This constant specifies value representation of Class Code guardian
|
MANU
This constant specifies value representation of Class Code manufactured
|
MMAT
This constant specifies value representation of Class Code manufactured material
|
NOK
This constant specifies value representation of Class Code next of kin
|
OBS
This constant specifies value representation of Class Code observation
|
PCPR
This constant specifies value representation of Class Code care provision
|
PLC
This constant specifies value representation of Class Code place
|
PROC
This constant specifies value representation of Class Code procedure
|
ROL
This constant specifies value representation of Class Code role
|
SBADM
This constant specifies value representation of Class Code Substance administrator
|
SDLOC
This constant specifies value representation of Class Code service delivery location
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumClassCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumClassCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumClassCode SBADM
public static final EnumClassCode OBS
public static final EnumClassCode EVN
public static final EnumClassCode ENC
public static final EnumClassCode PROC
public static final EnumClassCode ROL
public static final EnumClassCode MANU
public static final EnumClassCode PCPR
public static final EnumClassCode GUAR
public static final EnumClassCode SDLOC
public static final EnumClassCode PLC
public static final EnumClassCode NOK
public static final EnumClassCode ECON
public static final EnumClassCode CAREGIVER
public static final EnumClassCode MMAT
public static EnumClassCode[] values()
for (EnumClassCode c : EnumClassCode.values()) System.out.println(c);
public static EnumClassCode 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()