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.v26.group; 035 036import ca.uhn.hl7v2.model.v26.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 OSR_Q06_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) <b> </b></li> 051 * <li>2: OSR_Q06_TIMING (a Group object) <b>optional repeating</b></li> 052 * <li>3: OBR (Observation Request) <b> </b></li> 053 * <li>4: RQD (Requisition Detail) <b> </b></li> 054 * <li>5: RQ1 (Requisition Detail-1) <b> </b></li> 055 * <li>6: RXO (Pharmacy/Treatment Order) <b> </b></li> 056 * <li>7: ODS (Dietary Orders, Supplements, and Preferences) <b> </b></li> 057 * <li>8: ODT (Diet Tray Instructions) <b> </b></li> 058 * <li>9: NTE (Notes and Comments) <b>optional repeating</b></li> 059 * <li>10: CTI (Clinical Trial Identification) <b>optional repeating</b></li> 060 * </ul> 061 */ 062@SuppressWarnings("unused") 063public class OSR_Q06_ORDER extends AbstractGroup { 064 065 /** 066 * Creates a new OSR_Q06_ORDER group 067 */ 068 public OSR_Q06_ORDER(Group parent, ModelClassFactory factory) { 069 super(parent, factory); 070 init(factory); 071 } 072 073 private void init(ModelClassFactory factory) { 074 try { 075 this.add(ORC.class, true, false); 076 this.add(OSR_Q06_TIMING.class, false, true); 077 this.add(OBR.class, true, false); 078 this.add(RQD.class, true, false); 079 this.add(RQ1.class, true, false); 080 this.add(RXO.class, true, false); 081 this.add(ODS.class, true, false); 082 this.add(ODT.class, true, false); 083 this.add(NTE.class, false, true); 084 this.add(CTI.class, false, true); 085 } catch(HL7Exception e) { 086 log.error("Unexpected error creating OSR_Q06_ORDER - this is probably a bug in the source code generator.", e); 087 } 088 } 089 090 /** 091 * Returns "2.6" 092 */ 093 public String getVersion() { 094 return "2.6"; 095 } 096 097 098 099 /** 100 * Returns 101 * ORC (Common Order) - creates it if necessary 102 */ 103 public ORC getORC() { 104 ORC retVal = getTyped("ORC", ORC.class); 105 return retVal; 106 } 107 108 109 110 111 /** 112 * Returns 113 * the first repetition of 114 * TIMING (a Group object) - creates it if necessary 115 */ 116 public OSR_Q06_TIMING getTIMING() { 117 OSR_Q06_TIMING retVal = getTyped("TIMING", OSR_Q06_TIMING.class); 118 return retVal; 119 } 120 121 122 /** 123 * Returns a specific repetition of 124 * TIMING (a Group object) - creates it if necessary 125 * 126 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 127 * @throws HL7Exception if the repetition requested is more than one 128 * greater than the number of existing repetitions. 129 */ 130 public OSR_Q06_TIMING getTIMING(int rep) { 131 OSR_Q06_TIMING retVal = getTyped("TIMING", rep, OSR_Q06_TIMING.class); 132 return retVal; 133 } 134 135 /** 136 * Returns the number of existing repetitions of TIMING 137 */ 138 public int getTIMINGReps() { 139 return getReps("TIMING"); 140 } 141 142 /** 143 * <p> 144 * Returns a non-modifiable List containing all current existing repetitions of TIMING. 145 * <p> 146 * <p> 147 * Note that unlike {@link #getTIMING()}, this method will not create any reps 148 * if none are already present, so an empty list may be returned. 149 * </p> 150 */ 151 public List<OSR_Q06_TIMING> getTIMINGAll() throws HL7Exception { 152 return getAllAsList("TIMING", OSR_Q06_TIMING.class); 153 } 154 155 /** 156 * Inserts a specific repetition of TIMING (a Group object) 157 * @see AbstractGroup#insertRepetition(Structure, int) 158 */ 159 public void insertTIMING(OSR_Q06_TIMING structure, int rep) throws HL7Exception { 160 super.insertRepetition("TIMING", structure, rep); 161 } 162 163 164 /** 165 * Inserts a specific repetition of TIMING (a Group object) 166 * @see AbstractGroup#insertRepetition(Structure, int) 167 */ 168 public OSR_Q06_TIMING insertTIMING(int rep) throws HL7Exception { 169 return (OSR_Q06_TIMING)super.insertRepetition("TIMING", rep); 170 } 171 172 173 /** 174 * Removes a specific repetition of TIMING (a Group object) 175 * @see AbstractGroup#removeRepetition(String, int) 176 */ 177 public OSR_Q06_TIMING removeTIMING(int rep) throws HL7Exception { 178 return (OSR_Q06_TIMING)super.removeRepetition("TIMING", rep); 179 } 180 181 182 183 /** 184 * Returns 185 * OBR (Observation Request) - creates it if necessary 186 */ 187 public OBR getOBR() { 188 OBR retVal = getTyped("OBR", OBR.class); 189 return retVal; 190 } 191 192 193 194 195 /** 196 * Returns 197 * RQD (Requisition Detail) - creates it if necessary 198 */ 199 public RQD getRQD() { 200 RQD retVal = getTyped("RQD", RQD.class); 201 return retVal; 202 } 203 204 205 206 207 /** 208 * Returns 209 * RQ1 (Requisition Detail-1) - creates it if necessary 210 */ 211 public RQ1 getRQ1() { 212 RQ1 retVal = getTyped("RQ1", RQ1.class); 213 return retVal; 214 } 215 216 217 218 219 /** 220 * Returns 221 * RXO (Pharmacy/Treatment Order) - creates it if necessary 222 */ 223 public RXO getRXO() { 224 RXO retVal = getTyped("RXO", RXO.class); 225 return retVal; 226 } 227 228 229 230 231 /** 232 * Returns 233 * ODS (Dietary Orders, Supplements, and Preferences) - creates it if necessary 234 */ 235 public ODS getODS() { 236 ODS retVal = getTyped("ODS", ODS.class); 237 return retVal; 238 } 239 240 241 242 243 /** 244 * Returns 245 * ODT (Diet Tray Instructions) - creates it if necessary 246 */ 247 public ODT getODT() { 248 ODT retVal = getTyped("ODT", ODT.class); 249 return retVal; 250 } 251 252 253 254 255 /** 256 * Returns 257 * the first repetition of 258 * NTE (Notes and Comments) - creates it if necessary 259 */ 260 public NTE getNTE() { 261 NTE retVal = getTyped("NTE", NTE.class); 262 return retVal; 263 } 264 265 266 /** 267 * Returns a specific repetition of 268 * NTE (Notes and Comments) - creates it if necessary 269 * 270 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 271 * @throws HL7Exception if the repetition requested is more than one 272 * greater than the number of existing repetitions. 273 */ 274 public NTE getNTE(int rep) { 275 NTE retVal = getTyped("NTE", rep, NTE.class); 276 return retVal; 277 } 278 279 /** 280 * Returns the number of existing repetitions of NTE 281 */ 282 public int getNTEReps() { 283 return getReps("NTE"); 284 } 285 286 /** 287 * <p> 288 * Returns a non-modifiable List containing all current existing repetitions of NTE. 289 * <p> 290 * <p> 291 * Note that unlike {@link #getNTE()}, this method will not create any reps 292 * if none are already present, so an empty list may be returned. 293 * </p> 294 */ 295 public List<NTE> getNTEAll() throws HL7Exception { 296 return getAllAsList("NTE", NTE.class); 297 } 298 299 /** 300 * Inserts a specific repetition of NTE (Notes and Comments) 301 * @see AbstractGroup#insertRepetition(Structure, int) 302 */ 303 public void insertNTE(NTE structure, int rep) throws HL7Exception { 304 super.insertRepetition("NTE", structure, rep); 305 } 306 307 308 /** 309 * Inserts a specific repetition of NTE (Notes and Comments) 310 * @see AbstractGroup#insertRepetition(Structure, int) 311 */ 312 public NTE insertNTE(int rep) throws HL7Exception { 313 return (NTE)super.insertRepetition("NTE", rep); 314 } 315 316 317 /** 318 * Removes a specific repetition of NTE (Notes and Comments) 319 * @see AbstractGroup#removeRepetition(String, int) 320 */ 321 public NTE removeNTE(int rep) throws HL7Exception { 322 return (NTE)super.removeRepetition("NTE", rep); 323 } 324 325 326 327 /** 328 * Returns 329 * the first repetition of 330 * CTI (Clinical Trial Identification) - creates it if necessary 331 */ 332 public CTI getCTI() { 333 CTI retVal = getTyped("CTI", CTI.class); 334 return retVal; 335 } 336 337 338 /** 339 * Returns a specific repetition of 340 * CTI (Clinical Trial Identification) - creates it if necessary 341 * 342 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 343 * @throws HL7Exception if the repetition requested is more than one 344 * greater than the number of existing repetitions. 345 */ 346 public CTI getCTI(int rep) { 347 CTI retVal = getTyped("CTI", rep, CTI.class); 348 return retVal; 349 } 350 351 /** 352 * Returns the number of existing repetitions of CTI 353 */ 354 public int getCTIReps() { 355 return getReps("CTI"); 356 } 357 358 /** 359 * <p> 360 * Returns a non-modifiable List containing all current existing repetitions of CTI. 361 * <p> 362 * <p> 363 * Note that unlike {@link #getCTI()}, this method will not create any reps 364 * if none are already present, so an empty list may be returned. 365 * </p> 366 */ 367 public List<CTI> getCTIAll() throws HL7Exception { 368 return getAllAsList("CTI", CTI.class); 369 } 370 371 /** 372 * Inserts a specific repetition of CTI (Clinical Trial Identification) 373 * @see AbstractGroup#insertRepetition(Structure, int) 374 */ 375 public void insertCTI(CTI structure, int rep) throws HL7Exception { 376 super.insertRepetition("CTI", structure, rep); 377 } 378 379 380 /** 381 * Inserts a specific repetition of CTI (Clinical Trial Identification) 382 * @see AbstractGroup#insertRepetition(Structure, int) 383 */ 384 public CTI insertCTI(int rep) throws HL7Exception { 385 return (CTI)super.insertRepetition("CTI", rep); 386 } 387 388 389 /** 390 * Removes a specific repetition of CTI (Clinical Trial Identification) 391 * @see AbstractGroup#removeRepetition(String, int) 392 */ 393 public CTI removeCTI(int rep) throws HL7Exception { 394 return (CTI)super.removeRepetition("CTI", rep); 395 } 396 397 398 399} 400