Enum ServicePharmacy
- java.lang.Object
-
- java.lang.Enum<ServicePharmacy>
-
- org.hl7.fhir.r4.model.codesystems.ServicePharmacy
-
- All Implemented Interfaces:
Serializable,Comparable<ServicePharmacy>
public enum ServicePharmacy extends Enum<ServicePharmacy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPOUNDFEEThe professional fee charged for compounding the medication.DISPENSEFEEThe professional fee charged for dispensing the product or service.DRUGCOSTThe wholesale price of the medication.FLUSHOTFlu ShotMARKUPThe additional cost assessed on the drug.NULLadded to help the parsersSMOKECESSSmoking cessation
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServicePharmacyfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ServicePharmacyvalueOf(String name)Returns the enum constant of this type with the specified name.static ServicePharmacy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SMOKECESS
public static final ServicePharmacy SMOKECESS
Smoking cessation
-
FLUSHOT
public static final ServicePharmacy FLUSHOT
Flu Shot
-
DRUGCOST
public static final ServicePharmacy DRUGCOST
The wholesale price of the medication.
-
MARKUP
public static final ServicePharmacy MARKUP
The additional cost assessed on the drug.
-
DISPENSEFEE
public static final ServicePharmacy DISPENSEFEE
The professional fee charged for dispensing the product or service.
-
COMPOUNDFEE
public static final ServicePharmacy COMPOUNDFEE
The professional fee charged for compounding the medication.
-
NULL
public static final ServicePharmacy NULL
added to help the parsers
-
-
Method Detail
-
values
public static ServicePharmacy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ServicePharmacy c : ServicePharmacy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServicePharmacy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromCode
public static ServicePharmacy fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-