001package org.hl7.fhir.dstu3.model.codesystems;
002
003
004
005
006/*
007  Copyright (c) 2011+, HL7, Inc.
008  All rights reserved.
009  
010  Redistribution and use in source and binary forms, with or without modification, 
011  are permitted provided that the following conditions are met:
012  
013   * Redistributions of source code must retain the above copyright notice, this 
014     list of conditions and the following disclaimer.
015   * Redistributions in binary form must reproduce the above copyright notice, 
016     this list of conditions and the following disclaimer in the documentation 
017     and/or other materials provided with the distribution.
018   * Neither the name of HL7 nor the names of its contributors may be used to 
019     endorse or promote products derived from this software without specific 
020     prior written permission.
021  
022  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
023  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
024  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
025  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
026  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
027  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
028  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
029  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
030  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
031  POSSIBILITY OF SUCH DAMAGE.
032  
033*/
034
035// Generated on Sat, Mar 25, 2017 21:03-0400 for FHIR v3.0.0
036
037
038import org.hl7.fhir.dstu3.model.EnumFactory;
039
040public class ServiceUsclsEnumFactory implements EnumFactory<ServiceUscls> {
041
042  public ServiceUscls fromCode(String codeString) throws IllegalArgumentException {
043    if (codeString == null || "".equals(codeString))
044      return null;
045    if ("1101".equals(codeString))
046      return ServiceUscls._1101;
047    if ("1102".equals(codeString))
048      return ServiceUscls._1102;
049    if ("1103".equals(codeString))
050      return ServiceUscls._1103;
051    if ("1201".equals(codeString))
052      return ServiceUscls._1201;
053    if ("1205".equals(codeString))
054      return ServiceUscls._1205;
055    if ("2101".equals(codeString))
056      return ServiceUscls._2101;
057    if ("2102".equals(codeString))
058      return ServiceUscls._2102;
059    if ("2141".equals(codeString))
060      return ServiceUscls._2141;
061    if ("2601".equals(codeString))
062      return ServiceUscls._2601;
063    if ("11101".equals(codeString))
064      return ServiceUscls._11101;
065    if ("11102".equals(codeString))
066      return ServiceUscls._11102;
067    if ("11103".equals(codeString))
068      return ServiceUscls._11103;
069    if ("11104".equals(codeString))
070      return ServiceUscls._11104;
071    if ("21211".equals(codeString))
072      return ServiceUscls._21211;
073    if ("21212".equals(codeString))
074      return ServiceUscls._21212;
075    if ("27211".equals(codeString))
076      return ServiceUscls._27211;
077    if ("67211".equals(codeString))
078      return ServiceUscls._67211;
079    if ("99111".equals(codeString))
080      return ServiceUscls._99111;
081    if ("99333".equals(codeString))
082      return ServiceUscls._99333;
083    if ("99555".equals(codeString))
084      return ServiceUscls._99555;
085    throw new IllegalArgumentException("Unknown ServiceUscls code '"+codeString+"'");
086  }
087
088  public String toCode(ServiceUscls code) {
089    if (code == ServiceUscls._1101)
090      return "1101";
091    if (code == ServiceUscls._1102)
092      return "1102";
093    if (code == ServiceUscls._1103)
094      return "1103";
095    if (code == ServiceUscls._1201)
096      return "1201";
097    if (code == ServiceUscls._1205)
098      return "1205";
099    if (code == ServiceUscls._2101)
100      return "2101";
101    if (code == ServiceUscls._2102)
102      return "2102";
103    if (code == ServiceUscls._2141)
104      return "2141";
105    if (code == ServiceUscls._2601)
106      return "2601";
107    if (code == ServiceUscls._11101)
108      return "11101";
109    if (code == ServiceUscls._11102)
110      return "11102";
111    if (code == ServiceUscls._11103)
112      return "11103";
113    if (code == ServiceUscls._11104)
114      return "11104";
115    if (code == ServiceUscls._21211)
116      return "21211";
117    if (code == ServiceUscls._21212)
118      return "21212";
119    if (code == ServiceUscls._27211)
120      return "27211";
121    if (code == ServiceUscls._67211)
122      return "67211";
123    if (code == ServiceUscls._99111)
124      return "99111";
125    if (code == ServiceUscls._99333)
126      return "99333";
127    if (code == ServiceUscls._99555)
128      return "99555";
129    return "?";
130  }
131
132    public String toSystem(ServiceUscls code) {
133      return code.getSystem();
134      }
135
136}