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 ObjectRoleEnumFactory implements EnumFactory<ObjectRole> {
041
042  public ObjectRole fromCode(String codeString) throws IllegalArgumentException {
043    if (codeString == null || "".equals(codeString))
044      return null;
045    if ("1".equals(codeString))
046      return ObjectRole._1;
047    if ("2".equals(codeString))
048      return ObjectRole._2;
049    if ("3".equals(codeString))
050      return ObjectRole._3;
051    if ("4".equals(codeString))
052      return ObjectRole._4;
053    if ("5".equals(codeString))
054      return ObjectRole._5;
055    if ("6".equals(codeString))
056      return ObjectRole._6;
057    if ("7".equals(codeString))
058      return ObjectRole._7;
059    if ("8".equals(codeString))
060      return ObjectRole._8;
061    if ("9".equals(codeString))
062      return ObjectRole._9;
063    if ("10".equals(codeString))
064      return ObjectRole._10;
065    if ("11".equals(codeString))
066      return ObjectRole._11;
067    if ("12".equals(codeString))
068      return ObjectRole._12;
069    if ("13".equals(codeString))
070      return ObjectRole._13;
071    if ("14".equals(codeString))
072      return ObjectRole._14;
073    if ("15".equals(codeString))
074      return ObjectRole._15;
075    if ("16".equals(codeString))
076      return ObjectRole._16;
077    if ("17".equals(codeString))
078      return ObjectRole._17;
079    if ("18".equals(codeString))
080      return ObjectRole._18;
081    if ("19".equals(codeString))
082      return ObjectRole._19;
083    if ("20".equals(codeString))
084      return ObjectRole._20;
085    if ("21".equals(codeString))
086      return ObjectRole._21;
087    if ("22".equals(codeString))
088      return ObjectRole._22;
089    if ("23".equals(codeString))
090      return ObjectRole._23;
091    if ("24".equals(codeString))
092      return ObjectRole._24;
093    throw new IllegalArgumentException("Unknown ObjectRole code '"+codeString+"'");
094  }
095
096  public String toCode(ObjectRole code) {
097    if (code == ObjectRole._1)
098      return "1";
099    if (code == ObjectRole._2)
100      return "2";
101    if (code == ObjectRole._3)
102      return "3";
103    if (code == ObjectRole._4)
104      return "4";
105    if (code == ObjectRole._5)
106      return "5";
107    if (code == ObjectRole._6)
108      return "6";
109    if (code == ObjectRole._7)
110      return "7";
111    if (code == ObjectRole._8)
112      return "8";
113    if (code == ObjectRole._9)
114      return "9";
115    if (code == ObjectRole._10)
116      return "10";
117    if (code == ObjectRole._11)
118      return "11";
119    if (code == ObjectRole._12)
120      return "12";
121    if (code == ObjectRole._13)
122      return "13";
123    if (code == ObjectRole._14)
124      return "14";
125    if (code == ObjectRole._15)
126      return "15";
127    if (code == ObjectRole._16)
128      return "16";
129    if (code == ObjectRole._17)
130      return "17";
131    if (code == ObjectRole._18)
132      return "18";
133    if (code == ObjectRole._19)
134      return "19";
135    if (code == ObjectRole._20)
136      return "20";
137    if (code == ObjectRole._21)
138      return "21";
139    if (code == ObjectRole._22)
140      return "22";
141    if (code == ObjectRole._23)
142      return "23";
143    if (code == ObjectRole._24)
144      return "24";
145    return "?";
146  }
147
148    public String toSystem(ObjectRole code) {
149      return code.getSystem();
150      }
151
152}