001package org.hl7.fhir.r4.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 Wed, Jan 30, 2019 16:19-0500 for FHIR v4.0.0 036 037 038import org.hl7.fhir.exceptions.FHIRException; 039 040public enum VerificationresultPrimarySourceType { 041 042 /** 043 * null 044 */ 045 LICBOARD, 046 /** 047 * null 048 */ 049 PRIM, 050 /** 051 * null 052 */ 053 CONTED, 054 /** 055 * null 056 */ 057 POSTSERV, 058 /** 059 * null 060 */ 061 RELOWN, 062 /** 063 * null 064 */ 065 REGAUTH, 066 /** 067 * null 068 */ 069 LEGAL, 070 /** 071 * null 072 */ 073 ISSUER, 074 /** 075 * null 076 */ 077 AUTHSOURCE, 078 /** 079 * added to help the parsers 080 */ 081 NULL; 082 public static VerificationresultPrimarySourceType fromCode(String codeString) throws FHIRException { 083 if (codeString == null || "".equals(codeString)) 084 return null; 085 if ("lic-board".equals(codeString)) 086 return LICBOARD; 087 if ("prim".equals(codeString)) 088 return PRIM; 089 if ("cont-ed".equals(codeString)) 090 return CONTED; 091 if ("post-serv".equals(codeString)) 092 return POSTSERV; 093 if ("rel-own".equals(codeString)) 094 return RELOWN; 095 if ("reg-auth".equals(codeString)) 096 return REGAUTH; 097 if ("legal".equals(codeString)) 098 return LEGAL; 099 if ("issuer".equals(codeString)) 100 return ISSUER; 101 if ("auth-source".equals(codeString)) 102 return AUTHSOURCE; 103 throw new FHIRException("Unknown VerificationresultPrimarySourceType code '"+codeString+"'"); 104 } 105 public String toCode() { 106 switch (this) { 107 case LICBOARD: return "lic-board"; 108 case PRIM: return "prim"; 109 case CONTED: return "cont-ed"; 110 case POSTSERV: return "post-serv"; 111 case RELOWN: return "rel-own"; 112 case REGAUTH: return "reg-auth"; 113 case LEGAL: return "legal"; 114 case ISSUER: return "issuer"; 115 case AUTHSOURCE: return "auth-source"; 116 default: return "?"; 117 } 118 } 119 public String getSystem() { 120 return "http://terminology.hl7.org/CodeSystem/primary-source-type"; 121 } 122 public String getDefinition() { 123 switch (this) { 124 case LICBOARD: return ""; 125 case PRIM: return ""; 126 case CONTED: return ""; 127 case POSTSERV: return ""; 128 case RELOWN: return ""; 129 case REGAUTH: return ""; 130 case LEGAL: return ""; 131 case ISSUER: return ""; 132 case AUTHSOURCE: return ""; 133 default: return "?"; 134 } 135 } 136 public String getDisplay() { 137 switch (this) { 138 case LICBOARD: return "License Board"; 139 case PRIM: return "Primary Education"; 140 case CONTED: return "Continuing Education"; 141 case POSTSERV: return "Postal Service"; 142 case RELOWN: return "Relationship owner"; 143 case REGAUTH: return "Registration Authority"; 144 case LEGAL: return "Legal source"; 145 case ISSUER: return "Issuing source"; 146 case AUTHSOURCE: return "Authoritative source"; 147 default: return "?"; 148 } 149 } 150 151 152}