001package org.hl7.fhir.dstu3.model.codesystems;
002
003/*-
004 * #%L
005 * org.hl7.fhir.dstu3
006 * %%
007 * Copyright (C) 2014 - 2019 Health Level 7
008 * %%
009 * Licensed under the Apache License, Version 2.0 (the "License");
010 * you may not use this file except in compliance with the License.
011 * You may obtain a copy of the License at
012 * 
013 *      http://www.apache.org/licenses/LICENSE-2.0
014 * 
015 * Unless required by applicable law or agreed to in writing, software
016 * distributed under the License is distributed on an "AS IS" BASIS,
017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
018 * See the License for the specific language governing permissions and
019 * limitations under the License.
020 * #L%
021 */
022
023/*
024  Copyright (c) 2011+, HL7, Inc.
025  All rights reserved.
026  
027  Redistribution and use in source and binary forms, with or without modification, 
028  are permitted provided that the following conditions are met:
029  
030   * Redistributions of source code must retain the above copyright notice, this 
031     list of conditions and the following disclaimer.
032   * Redistributions in binary form must reproduce the above copyright notice, 
033     this list of conditions and the following disclaimer in the documentation 
034     and/or other materials provided with the distribution.
035   * Neither the name of HL7 nor the names of its contributors may be used to 
036     endorse or promote products derived from this software without specific 
037     prior written permission.
038  
039  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
040  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
041  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
042  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
043  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
044  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
045  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
046  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
047  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
048  POSSIBILITY OF SUCH DAMAGE.
049  
050*/
051
052// Generated on Sat, Mar 25, 2017 21:03-0400 for FHIR v3.0.0
053
054
055import org.hl7.fhir.exceptions.FHIRException;
056
057public enum DeviceStatus {
058
059  /**
060   * The Device is available for use.  Note: This means for *implanted devices*  the device is implanted in the patient.
061   */
062  ACTIVE,
063  /**
064   * The Device is no longer available for use (e.g. lost, expired, damaged).  Note: This means for *implanted devices*  the device has been removed from the patient.
065   */
066  INACTIVE,
067  /**
068   * The Device was entered in error and voided.
069   */
070  ENTEREDINERROR,
071  /**
072   * The status of the device has not been determined.
073   */
074  UNKNOWN,
075  /**
076   * added to help the parsers
077   */
078  NULL;
079
080  public String getDefinition() {
081    switch (this) {
082      case ACTIVE:
083        return "The Device is available for use.  Note: This means for *implanted devices*  the device is implanted in the patient.";
084      case INACTIVE:
085        return "The Device is no longer available for use (e.g. lost, expired, damaged).  Note: This means for *implanted devices*  the device has been removed from the patient.";
086      case ENTEREDINERROR:
087        return "The Device was entered in error and voided.";
088      case UNKNOWN:
089        return "The status of the device has not been determined.";
090      default:
091        return "?";
092    }
093  }
094
095  public String getDisplay() {
096    switch (this) {
097      case ACTIVE:
098        return "Active";
099      case INACTIVE:
100        return "Inactive";
101      case ENTEREDINERROR:
102        return "Entered in Error";
103      case UNKNOWN:
104        return "Unknown";
105      default:
106        return "?";
107    }
108  }
109
110  public String getSystem() {
111    return "http://hl7.org/fhir/device-status";
112  }
113
114  public String toCode() {
115    switch (this) {
116      case ACTIVE:
117        return "active";
118      case INACTIVE:
119        return "inactive";
120      case ENTEREDINERROR:
121        return "entered-in-error";
122      case UNKNOWN:
123        return "unknown";
124      default:
125        return "?";
126    }
127  }
128
129  public static DeviceStatus fromCode(String codeString) throws FHIRException {
130    if (codeString == null || "".equals(codeString))
131      return null;
132    if ("active".equals(codeString))
133      return ACTIVE;
134    if ("inactive".equals(codeString))
135      return INACTIVE;
136    if ("entered-in-error".equals(codeString))
137      return ENTEREDINERROR;
138    if ("unknown".equals(codeString))
139      return UNKNOWN;
140    throw new FHIRException("Unknown DeviceStatus code '" + codeString + "'");
141  }
142
143
144}
145