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 AllergyintoleranceVerification {
037
038  /**
039   * A low level of certainty about the propensity for a reaction to the
040   * identified substance.
041   */
042  UNCONFIRMED,
043  /**
044   * A high level of certainty about the propensity for a reaction to the
045   * identified substance, which may include clinical evidence by testing or
046   * rechallenge.
047   */
048  CONFIRMED,
049  /**
050   * A propensity for a reaction to the identified substance has been disputed or
051   * disproven with a sufficient level of clinical certainty to justify
052   * invalidating the assertion. This might or might not include testing or
053   * rechallenge.
054   */
055  REFUTED,
056  /**
057   * The statement was entered in error and is not valid.
058   */
059  ENTEREDINERROR,
060  /**
061   * added to help the parsers
062   */
063  NULL;
064
065  public static AllergyintoleranceVerification fromCode(String codeString) throws FHIRException {
066    if (codeString == null || "".equals(codeString))
067      return null;
068    if ("unconfirmed".equals(codeString))
069      return UNCONFIRMED;
070    if ("confirmed".equals(codeString))
071      return CONFIRMED;
072    if ("refuted".equals(codeString))
073      return REFUTED;
074    if ("entered-in-error".equals(codeString))
075      return ENTEREDINERROR;
076    throw new FHIRException("Unknown AllergyintoleranceVerification code '" + codeString + "'");
077  }
078
079  public String toCode() {
080    switch (this) {
081    case UNCONFIRMED:
082      return "unconfirmed";
083    case CONFIRMED:
084      return "confirmed";
085    case REFUTED:
086      return "refuted";
087    case ENTEREDINERROR:
088      return "entered-in-error";
089    case NULL:
090      return null;
091    default:
092      return "?";
093    }
094  }
095
096  public String getSystem() {
097    return "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification";
098  }
099
100  public String getDefinition() {
101    switch (this) {
102    case UNCONFIRMED:
103      return "A low level of certainty about the propensity for a reaction to the identified substance.";
104    case CONFIRMED:
105      return "A high level of certainty about the propensity for a reaction to the identified substance, which may include clinical evidence by testing or rechallenge.";
106    case REFUTED:
107      return "A propensity for a reaction to the identified substance has been disputed or disproven with a sufficient level of clinical certainty to justify invalidating the assertion. This might or might not include testing or rechallenge.";
108    case ENTEREDINERROR:
109      return "The statement was entered in error and is not valid.";
110    case NULL:
111      return null;
112    default:
113      return "?";
114    }
115  }
116
117  public String getDisplay() {
118    switch (this) {
119    case UNCONFIRMED:
120      return "Unconfirmed";
121    case CONFIRMED:
122      return "Confirmed";
123    case REFUTED:
124      return "Refuted";
125    case ENTEREDINERROR:
126      return "Entered in Error";
127    case NULL:
128      return null;
129    default:
130      return "?";
131    }
132  }
133
134}