public enum EnumEntryDataSection extends java.lang.Enum<EnumEntryDataSection>
| Enum Constant and Description |
|---|
ACT
This constant specifies act value for section's entry data
|
ENCOUNTER
This constant specifies encounter value for section's entry data
|
OBSERVATION
This constant specifies observation value for section's entry data
|
PROCEDURE
This constant specifies procedure value for section's entry data
|
SUBSTANCEADMINISTRATION
This constant specifies substance administration value for section's entry data
|
SUPPLY
This constant specifies supply value for section's entry data
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumEntryDataSection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumEntryDataSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumEntryDataSection OBSERVATION
public static final EnumEntryDataSection ACT
public static final EnumEntryDataSection ENCOUNTER
public static final EnumEntryDataSection SUPPLY
public static final EnumEntryDataSection SUBSTANCEADMINISTRATION
public static final EnumEntryDataSection PROCEDURE
public static EnumEntryDataSection[] values()
for (EnumEntryDataSection c : EnumEntryDataSection.values()) System.out.println(c);
public static EnumEntryDataSection 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()