001/* 002 * This class is an auto-generated source file for a HAPI 003 * HL7 v2.x standard structure class. 004 * 005 * For more information, visit: http://hl7api.sourceforge.net/ 006 * 007 * The contents of this file are subject to the Mozilla Public License Version 1.1 008 * (the "License"); you may not use this file except in compliance with the License. 009 * You may obtain a copy of the License at http://www.mozilla.org/MPL/ 010 * Software distributed under the License is distributed on an "AS IS" basis, 011 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 012 * specific language governing rights and limitations under the License. 013 * 014 * The Original Code is "[file_name]". Description: 015 * "[one_line_description]" 016 * 017 * The Initial Developer of the Original Code is University Health Network. Copyright (C) 018 * 2012. All Rights Reserved. 019 * 020 * Contributor(s): ______________________________________. 021 * 022 * Alternatively, the contents of this file may be used under the terms of the 023 * GNU General Public License (the "GPL"), in which case the provisions of the GPL are 024 * applicable instead of those above. If you wish to allow use of your version of this 025 * file only under the terms of the GPL and not to allow others to use your version 026 * of this file under the MPL, indicate your decision by deleting the provisions above 027 * and replace them with the notice and other provisions required by the GPL License. 028 * If you do not delete the provisions above, a recipient may use your version of 029 * this file under either the MPL or the GPL. 030 * 031 */ 032 033 034package ca.uhn.hl7v2.model.v23.group; 035 036import ca.uhn.hl7v2.model.v23.segment.*; 037 038import java.util.List; 039 040import ca.uhn.hl7v2.HL7Exception; 041import ca.uhn.hl7v2.parser.ModelClassFactory; 042import ca.uhn.hl7v2.model.*; 043 044/** 045 * <p>Represents a RGR_RGR_ORDER group structure (a Group object). 046 * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. 047 * This Group contains the following elements: 048 * </p> 049 * <ul> 050 * <li>1: ORC (Common order segment) <b> </b></li> 051 * <li>2: RGR_RGR_ENCODING (a Group object) <b>optional </b></li> 052 * <li>3: RXG (Pharmacy give segment) <b> repeating</b></li> 053 * <li>4: RXR (Pharmacy route segment) <b> repeating</b></li> 054 * <li>5: RXC (Pharmacy component order segment) <b>optional repeating</b></li> 055 * </ul> 056 */ 057@SuppressWarnings("unused") 058public class RGR_RGR_ORDER extends AbstractGroup { 059 060 /** 061 * Creates a new RGR_RGR_ORDER group 062 */ 063 public RGR_RGR_ORDER(Group parent, ModelClassFactory factory) { 064 super(parent, factory); 065 init(factory); 066 } 067 068 private void init(ModelClassFactory factory) { 069 try { 070 this.add(ORC.class, true, false); 071 this.add(RGR_RGR_ENCODING.class, false, false); 072 this.add(RXG.class, true, true); 073 this.add(RXR.class, true, true); 074 this.add(RXC.class, false, true); 075 } catch(HL7Exception e) { 076 log.error("Unexpected error creating RGR_RGR_ORDER - this is probably a bug in the source code generator.", e); 077 } 078 } 079 080 /** 081 * Returns "2.3" 082 */ 083 public String getVersion() { 084 return "2.3"; 085 } 086 087 088 089 /** 090 * Returns 091 * ORC (Common order segment) - creates it if necessary 092 */ 093 public ORC getORC() { 094 ORC retVal = getTyped("ORC", ORC.class); 095 return retVal; 096 } 097 098 099 100 101 /** 102 * Returns 103 * ENCODING (a Group object) - creates it if necessary 104 */ 105 public RGR_RGR_ENCODING getENCODING() { 106 RGR_RGR_ENCODING retVal = getTyped("ENCODING", RGR_RGR_ENCODING.class); 107 return retVal; 108 } 109 110 111 112 113 /** 114 * Returns 115 * the first repetition of 116 * RXG (Pharmacy give segment) - creates it if necessary 117 */ 118 public RXG getRXG() { 119 RXG retVal = getTyped("RXG", RXG.class); 120 return retVal; 121 } 122 123 124 /** 125 * Returns a specific repetition of 126 * RXG (Pharmacy give segment) - creates it if necessary 127 * 128 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 129 * @throws HL7Exception if the repetition requested is more than one 130 * greater than the number of existing repetitions. 131 */ 132 public RXG getRXG(int rep) { 133 RXG retVal = getTyped("RXG", rep, RXG.class); 134 return retVal; 135 } 136 137 /** 138 * Returns the number of existing repetitions of RXG 139 */ 140 public int getRXGReps() { 141 return getReps("RXG"); 142 } 143 144 /** 145 * <p> 146 * Returns a non-modifiable List containing all current existing repetitions of RXG. 147 * <p> 148 * <p> 149 * Note that unlike {@link #getRXG()}, this method will not create any reps 150 * if none are already present, so an empty list may be returned. 151 * </p> 152 */ 153 public List<RXG> getRXGAll() throws HL7Exception { 154 return getAllAsList("RXG", RXG.class); 155 } 156 157 /** 158 * Inserts a specific repetition of RXG (Pharmacy give segment) 159 * @see AbstractGroup#insertRepetition(Structure, int) 160 */ 161 public void insertRXG(RXG structure, int rep) throws HL7Exception { 162 super.insertRepetition("RXG", structure, rep); 163 } 164 165 166 /** 167 * Inserts a specific repetition of RXG (Pharmacy give segment) 168 * @see AbstractGroup#insertRepetition(Structure, int) 169 */ 170 public RXG insertRXG(int rep) throws HL7Exception { 171 return (RXG)super.insertRepetition("RXG", rep); 172 } 173 174 175 /** 176 * Removes a specific repetition of RXG (Pharmacy give segment) 177 * @see AbstractGroup#removeRepetition(String, int) 178 */ 179 public RXG removeRXG(int rep) throws HL7Exception { 180 return (RXG)super.removeRepetition("RXG", rep); 181 } 182 183 184 185 /** 186 * Returns 187 * the first repetition of 188 * RXR (Pharmacy route segment) - creates it if necessary 189 */ 190 public RXR getRXR() { 191 RXR retVal = getTyped("RXR", RXR.class); 192 return retVal; 193 } 194 195 196 /** 197 * Returns a specific repetition of 198 * RXR (Pharmacy route segment) - creates it if necessary 199 * 200 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 201 * @throws HL7Exception if the repetition requested is more than one 202 * greater than the number of existing repetitions. 203 */ 204 public RXR getRXR(int rep) { 205 RXR retVal = getTyped("RXR", rep, RXR.class); 206 return retVal; 207 } 208 209 /** 210 * Returns the number of existing repetitions of RXR 211 */ 212 public int getRXRReps() { 213 return getReps("RXR"); 214 } 215 216 /** 217 * <p> 218 * Returns a non-modifiable List containing all current existing repetitions of RXR. 219 * <p> 220 * <p> 221 * Note that unlike {@link #getRXR()}, this method will not create any reps 222 * if none are already present, so an empty list may be returned. 223 * </p> 224 */ 225 public List<RXR> getRXRAll() throws HL7Exception { 226 return getAllAsList("RXR", RXR.class); 227 } 228 229 /** 230 * Inserts a specific repetition of RXR (Pharmacy route segment) 231 * @see AbstractGroup#insertRepetition(Structure, int) 232 */ 233 public void insertRXR(RXR structure, int rep) throws HL7Exception { 234 super.insertRepetition("RXR", structure, rep); 235 } 236 237 238 /** 239 * Inserts a specific repetition of RXR (Pharmacy route segment) 240 * @see AbstractGroup#insertRepetition(Structure, int) 241 */ 242 public RXR insertRXR(int rep) throws HL7Exception { 243 return (RXR)super.insertRepetition("RXR", rep); 244 } 245 246 247 /** 248 * Removes a specific repetition of RXR (Pharmacy route segment) 249 * @see AbstractGroup#removeRepetition(String, int) 250 */ 251 public RXR removeRXR(int rep) throws HL7Exception { 252 return (RXR)super.removeRepetition("RXR", rep); 253 } 254 255 256 257 /** 258 * Returns 259 * the first repetition of 260 * RXC (Pharmacy component order segment) - creates it if necessary 261 */ 262 public RXC getRXC() { 263 RXC retVal = getTyped("RXC", RXC.class); 264 return retVal; 265 } 266 267 268 /** 269 * Returns a specific repetition of 270 * RXC (Pharmacy component order segment) - creates it if necessary 271 * 272 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 273 * @throws HL7Exception if the repetition requested is more than one 274 * greater than the number of existing repetitions. 275 */ 276 public RXC getRXC(int rep) { 277 RXC retVal = getTyped("RXC", rep, RXC.class); 278 return retVal; 279 } 280 281 /** 282 * Returns the number of existing repetitions of RXC 283 */ 284 public int getRXCReps() { 285 return getReps("RXC"); 286 } 287 288 /** 289 * <p> 290 * Returns a non-modifiable List containing all current existing repetitions of RXC. 291 * <p> 292 * <p> 293 * Note that unlike {@link #getRXC()}, this method will not create any reps 294 * if none are already present, so an empty list may be returned. 295 * </p> 296 */ 297 public List<RXC> getRXCAll() throws HL7Exception { 298 return getAllAsList("RXC", RXC.class); 299 } 300 301 /** 302 * Inserts a specific repetition of RXC (Pharmacy component order segment) 303 * @see AbstractGroup#insertRepetition(Structure, int) 304 */ 305 public void insertRXC(RXC structure, int rep) throws HL7Exception { 306 super.insertRepetition("RXC", structure, rep); 307 } 308 309 310 /** 311 * Inserts a specific repetition of RXC (Pharmacy component order segment) 312 * @see AbstractGroup#insertRepetition(Structure, int) 313 */ 314 public RXC insertRXC(int rep) throws HL7Exception { 315 return (RXC)super.insertRepetition("RXC", rep); 316 } 317 318 319 /** 320 * Removes a specific repetition of RXC (Pharmacy component order segment) 321 * @see AbstractGroup#removeRepetition(String, int) 322 */ 323 public RXC removeRXC(int rep) throws HL7Exception { 324 return (RXC)super.removeRepetition("RXC", rep); 325 } 326 327 328 329} 330