001package org.hl7.fhir.r4.model.codesystems;
002
003/*
004  Copyright (c) 2011+, HL7, Inc.
005  All rights reserved.
006  
007  Redistribution and use in source and binary forms, with or without modification, 
008  are permitted provided that the following conditions are met:
009  
010   * Redistributions of source code must retain the above copyright notice, this 
011     list of conditions and the following disclaimer.
012   * Redistributions in binary form must reproduce the above copyright notice, 
013     this list of conditions and the following disclaimer in the documentation 
014     and/or other materials provided with the distribution.
015   * Neither the name of HL7 nor the names of its contributors may be used to 
016     endorse or promote products derived from this software without specific 
017     prior written permission.
018  
019  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
020  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
021  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
022  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
023  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
024  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
025  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
026  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
027  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
028  POSSIBILITY OF SUCH DAMAGE.
029  
030*/
031
032// Generated on Wed, Jan 30, 2019 16:19-0500 for FHIR v4.0.0
033
034import org.hl7.fhir.exceptions.FHIRException;
035
036public enum MedicationStatementCategory {
037
038  /**
039   * Includes orders for medications to be administered or consumed in an
040   * inpatient or acute care setting
041   */
042  INPATIENT,
043  /**
044   * Includes orders for medications to be administered or consumed in an
045   * outpatient setting (for example, Emergency Department, Outpatient Clinic,
046   * Outpatient Surgery, Doctor's office)
047   */
048  OUTPATIENT,
049  /**
050   * Includes orders for medications to be administered or consumed by the patient
051   * in their home (this would include long term care or nursing homes, hospices,
052   * etc.).
053   */
054  COMMUNITY,
055  /**
056   * Includes statements about medication use, including over the counter
057   * medication, provided by the patient, agent or another provider
058   */
059  PATIENTSPECIFIED,
060  /**
061   * added to help the parsers
062   */
063  NULL;
064
065  public static MedicationStatementCategory fromCode(String codeString) throws FHIRException {
066    if (codeString == null || "".equals(codeString))
067      return null;
068    if ("inpatient".equals(codeString))
069      return INPATIENT;
070    if ("outpatient".equals(codeString))
071      return OUTPATIENT;
072    if ("community".equals(codeString))
073      return COMMUNITY;
074    if ("patientspecified".equals(codeString))
075      return PATIENTSPECIFIED;
076    throw new FHIRException("Unknown MedicationStatementCategory code '" + codeString + "'");
077  }
078
079  public String toCode() {
080    switch (this) {
081    case INPATIENT:
082      return "inpatient";
083    case OUTPATIENT:
084      return "outpatient";
085    case COMMUNITY:
086      return "community";
087    case PATIENTSPECIFIED:
088      return "patientspecified";
089    case NULL:
090      return null;
091    default:
092      return "?";
093    }
094  }
095
096  public String getSystem() {
097    return "http://terminology.hl7.org/CodeSystem/medication-statement-category";
098  }
099
100  public String getDefinition() {
101    switch (this) {
102    case INPATIENT:
103      return "Includes orders for medications to be administered or consumed in an inpatient or acute care setting";
104    case OUTPATIENT:
105      return "Includes orders for medications to be administered or consumed in an outpatient setting (for example, Emergency Department, Outpatient Clinic, Outpatient Surgery, Doctor's office)";
106    case COMMUNITY:
107      return "Includes orders for medications to be administered or consumed by the patient in their home (this would include long term care or nursing homes, hospices, etc.).";
108    case PATIENTSPECIFIED:
109      return "Includes statements about medication use, including over the counter medication, provided by the patient, agent or another provider";
110    case NULL:
111      return null;
112    default:
113      return "?";
114    }
115  }
116
117  public String getDisplay() {
118    switch (this) {
119    case INPATIENT:
120      return "Inpatient";
121    case OUTPATIENT:
122      return "Outpatient";
123    case COMMUNITY:
124      return "Community";
125    case PATIENTSPECIFIED:
126      return "Patient Specified";
127    case NULL:
128      return null;
129    default:
130      return "?";
131    }
132  }
133
134}