public enum SupplyCategoryCode extends Enum<SupplyCategoryCode>
| Act Class Code | Act Mood Code | Supported Category Code |
|---|---|---|
| SPLY | EVN | GENERAL_SUPPLY |
| SPLY | EVN | MEDICATION_DISPENSE |
| SPLY | RQO | NUTRITION_ORDER |
| Enum Constant and Description |
|---|
MEDICATION_DISPENSE
Indicates that a medication product is to be or has been dispensed for a
named
person/patient.
|
NUTRITION_ORDER
A request to supply a diet, formula feeding (enteral) or oral nutritional
supplement to a patient/resident.
|
| Modifier and Type | Method and Description |
|---|---|
static SupplyCategoryCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupplyCategoryCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupplyCategoryCode MEDICATION_DISPENSE
public static final SupplyCategoryCode NUTRITION_ORDER
public static SupplyCategoryCode[] values()
for (SupplyCategoryCode c : SupplyCategoryCode.values()) System.out.println(c);
public static SupplyCategoryCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullHDR Glossary HDR Concept Lists HDR Exceptions HDR Programmer's Guide HDR Implementation Guide HDR Profile Options
Copyright © 2016, 2018, Oracle. All rights reserved