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 OMI_O23_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: OMI_O23_TIMING (a Group object) <b>optional repeating</b></li> 052 * <li>3: OBR (Observation Request) <b> </b></li> 053 * <li>4: NTE (Notes and Comments) <b>optional repeating</b></li> 054 * <li>5: ROL (Role) <b>optional repeating</b></li> 055 * <li>6: CTD (Contact Data) <b>optional </b></li> 056 * <li>7: DG1 (Diagnosis) <b>optional repeating</b></li> 057 * <li>8: OMI_O23_OBSERVATION (a Group object) <b>optional repeating</b></li> 058 * <li>9: IPC (Imaging Procedure Control Segment) <b> repeating</b></li> 059 * </ul> 060 */ 061@SuppressWarnings("unused") 062public class OMI_O23_ORDER extends AbstractGroup { 063 064 /** 065 * Creates a new OMI_O23_ORDER group 066 */ 067 public OMI_O23_ORDER(Group parent, ModelClassFactory factory) { 068 super(parent, factory); 069 init(factory); 070 } 071 072 private void init(ModelClassFactory factory) { 073 try { 074 this.add(ORC.class, true, false); 075 this.add(OMI_O23_TIMING.class, false, true); 076 this.add(OBR.class, true, false); 077 this.add(NTE.class, false, true); 078 this.add(ROL.class, false, true); 079 this.add(CTD.class, false, false); 080 this.add(DG1.class, false, true); 081 this.add(OMI_O23_OBSERVATION.class, false, true); 082 this.add(IPC.class, true, true); 083 } catch(HL7Exception e) { 084 log.error("Unexpected error creating OMI_O23_ORDER - this is probably a bug in the source code generator.", e); 085 } 086 } 087 088 /** 089 * Returns "2.6" 090 */ 091 public String getVersion() { 092 return "2.6"; 093 } 094 095 096 097 /** 098 * Returns 099 * ORC (Common Order) - creates it if necessary 100 */ 101 public ORC getORC() { 102 ORC retVal = getTyped("ORC", ORC.class); 103 return retVal; 104 } 105 106 107 108 109 /** 110 * Returns 111 * the first repetition of 112 * TIMING (a Group object) - creates it if necessary 113 */ 114 public OMI_O23_TIMING getTIMING() { 115 OMI_O23_TIMING retVal = getTyped("TIMING", OMI_O23_TIMING.class); 116 return retVal; 117 } 118 119 120 /** 121 * Returns a specific repetition of 122 * TIMING (a Group object) - creates it if necessary 123 * 124 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 125 * @throws HL7Exception if the repetition requested is more than one 126 * greater than the number of existing repetitions. 127 */ 128 public OMI_O23_TIMING getTIMING(int rep) { 129 OMI_O23_TIMING retVal = getTyped("TIMING", rep, OMI_O23_TIMING.class); 130 return retVal; 131 } 132 133 /** 134 * Returns the number of existing repetitions of TIMING 135 */ 136 public int getTIMINGReps() { 137 return getReps("TIMING"); 138 } 139 140 /** 141 * <p> 142 * Returns a non-modifiable List containing all current existing repetitions of TIMING. 143 * <p> 144 * <p> 145 * Note that unlike {@link #getTIMING()}, this method will not create any reps 146 * if none are already present, so an empty list may be returned. 147 * </p> 148 */ 149 public List<OMI_O23_TIMING> getTIMINGAll() throws HL7Exception { 150 return getAllAsList("TIMING", OMI_O23_TIMING.class); 151 } 152 153 /** 154 * Inserts a specific repetition of TIMING (a Group object) 155 * @see AbstractGroup#insertRepetition(Structure, int) 156 */ 157 public void insertTIMING(OMI_O23_TIMING structure, int rep) throws HL7Exception { 158 super.insertRepetition("TIMING", structure, rep); 159 } 160 161 162 /** 163 * Inserts a specific repetition of TIMING (a Group object) 164 * @see AbstractGroup#insertRepetition(Structure, int) 165 */ 166 public OMI_O23_TIMING insertTIMING(int rep) throws HL7Exception { 167 return (OMI_O23_TIMING)super.insertRepetition("TIMING", rep); 168 } 169 170 171 /** 172 * Removes a specific repetition of TIMING (a Group object) 173 * @see AbstractGroup#removeRepetition(String, int) 174 */ 175 public OMI_O23_TIMING removeTIMING(int rep) throws HL7Exception { 176 return (OMI_O23_TIMING)super.removeRepetition("TIMING", rep); 177 } 178 179 180 181 /** 182 * Returns 183 * OBR (Observation Request) - creates it if necessary 184 */ 185 public OBR getOBR() { 186 OBR retVal = getTyped("OBR", OBR.class); 187 return retVal; 188 } 189 190 191 192 193 /** 194 * Returns 195 * the first repetition of 196 * NTE (Notes and Comments) - creates it if necessary 197 */ 198 public NTE getNTE() { 199 NTE retVal = getTyped("NTE", NTE.class); 200 return retVal; 201 } 202 203 204 /** 205 * Returns a specific repetition of 206 * NTE (Notes and Comments) - creates it if necessary 207 * 208 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 209 * @throws HL7Exception if the repetition requested is more than one 210 * greater than the number of existing repetitions. 211 */ 212 public NTE getNTE(int rep) { 213 NTE retVal = getTyped("NTE", rep, NTE.class); 214 return retVal; 215 } 216 217 /** 218 * Returns the number of existing repetitions of NTE 219 */ 220 public int getNTEReps() { 221 return getReps("NTE"); 222 } 223 224 /** 225 * <p> 226 * Returns a non-modifiable List containing all current existing repetitions of NTE. 227 * <p> 228 * <p> 229 * Note that unlike {@link #getNTE()}, this method will not create any reps 230 * if none are already present, so an empty list may be returned. 231 * </p> 232 */ 233 public List<NTE> getNTEAll() throws HL7Exception { 234 return getAllAsList("NTE", NTE.class); 235 } 236 237 /** 238 * Inserts a specific repetition of NTE (Notes and Comments) 239 * @see AbstractGroup#insertRepetition(Structure, int) 240 */ 241 public void insertNTE(NTE structure, int rep) throws HL7Exception { 242 super.insertRepetition("NTE", structure, rep); 243 } 244 245 246 /** 247 * Inserts a specific repetition of NTE (Notes and Comments) 248 * @see AbstractGroup#insertRepetition(Structure, int) 249 */ 250 public NTE insertNTE(int rep) throws HL7Exception { 251 return (NTE)super.insertRepetition("NTE", rep); 252 } 253 254 255 /** 256 * Removes a specific repetition of NTE (Notes and Comments) 257 * @see AbstractGroup#removeRepetition(String, int) 258 */ 259 public NTE removeNTE(int rep) throws HL7Exception { 260 return (NTE)super.removeRepetition("NTE", rep); 261 } 262 263 264 265 /** 266 * Returns 267 * the first repetition of 268 * ROL (Role) - creates it if necessary 269 */ 270 public ROL getROL() { 271 ROL retVal = getTyped("ROL", ROL.class); 272 return retVal; 273 } 274 275 276 /** 277 * Returns a specific repetition of 278 * ROL (Role) - creates it if necessary 279 * 280 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 281 * @throws HL7Exception if the repetition requested is more than one 282 * greater than the number of existing repetitions. 283 */ 284 public ROL getROL(int rep) { 285 ROL retVal = getTyped("ROL", rep, ROL.class); 286 return retVal; 287 } 288 289 /** 290 * Returns the number of existing repetitions of ROL 291 */ 292 public int getROLReps() { 293 return getReps("ROL"); 294 } 295 296 /** 297 * <p> 298 * Returns a non-modifiable List containing all current existing repetitions of ROL. 299 * <p> 300 * <p> 301 * Note that unlike {@link #getROL()}, this method will not create any reps 302 * if none are already present, so an empty list may be returned. 303 * </p> 304 */ 305 public List<ROL> getROLAll() throws HL7Exception { 306 return getAllAsList("ROL", ROL.class); 307 } 308 309 /** 310 * Inserts a specific repetition of ROL (Role) 311 * @see AbstractGroup#insertRepetition(Structure, int) 312 */ 313 public void insertROL(ROL structure, int rep) throws HL7Exception { 314 super.insertRepetition("ROL", structure, rep); 315 } 316 317 318 /** 319 * Inserts a specific repetition of ROL (Role) 320 * @see AbstractGroup#insertRepetition(Structure, int) 321 */ 322 public ROL insertROL(int rep) throws HL7Exception { 323 return (ROL)super.insertRepetition("ROL", rep); 324 } 325 326 327 /** 328 * Removes a specific repetition of ROL (Role) 329 * @see AbstractGroup#removeRepetition(String, int) 330 */ 331 public ROL removeROL(int rep) throws HL7Exception { 332 return (ROL)super.removeRepetition("ROL", rep); 333 } 334 335 336 337 /** 338 * Returns 339 * CTD (Contact Data) - creates it if necessary 340 */ 341 public CTD getCTD() { 342 CTD retVal = getTyped("CTD", CTD.class); 343 return retVal; 344 } 345 346 347 348 349 /** 350 * Returns 351 * the first repetition of 352 * DG1 (Diagnosis) - creates it if necessary 353 */ 354 public DG1 getDG1() { 355 DG1 retVal = getTyped("DG1", DG1.class); 356 return retVal; 357 } 358 359 360 /** 361 * Returns a specific repetition of 362 * DG1 (Diagnosis) - creates it if necessary 363 * 364 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 365 * @throws HL7Exception if the repetition requested is more than one 366 * greater than the number of existing repetitions. 367 */ 368 public DG1 getDG1(int rep) { 369 DG1 retVal = getTyped("DG1", rep, DG1.class); 370 return retVal; 371 } 372 373 /** 374 * Returns the number of existing repetitions of DG1 375 */ 376 public int getDG1Reps() { 377 return getReps("DG1"); 378 } 379 380 /** 381 * <p> 382 * Returns a non-modifiable List containing all current existing repetitions of DG1. 383 * <p> 384 * <p> 385 * Note that unlike {@link #getDG1()}, this method will not create any reps 386 * if none are already present, so an empty list may be returned. 387 * </p> 388 */ 389 public List<DG1> getDG1All() throws HL7Exception { 390 return getAllAsList("DG1", DG1.class); 391 } 392 393 /** 394 * Inserts a specific repetition of DG1 (Diagnosis) 395 * @see AbstractGroup#insertRepetition(Structure, int) 396 */ 397 public void insertDG1(DG1 structure, int rep) throws HL7Exception { 398 super.insertRepetition("DG1", structure, rep); 399 } 400 401 402 /** 403 * Inserts a specific repetition of DG1 (Diagnosis) 404 * @see AbstractGroup#insertRepetition(Structure, int) 405 */ 406 public DG1 insertDG1(int rep) throws HL7Exception { 407 return (DG1)super.insertRepetition("DG1", rep); 408 } 409 410 411 /** 412 * Removes a specific repetition of DG1 (Diagnosis) 413 * @see AbstractGroup#removeRepetition(String, int) 414 */ 415 public DG1 removeDG1(int rep) throws HL7Exception { 416 return (DG1)super.removeRepetition("DG1", rep); 417 } 418 419 420 421 /** 422 * Returns 423 * the first repetition of 424 * OBSERVATION (a Group object) - creates it if necessary 425 */ 426 public OMI_O23_OBSERVATION getOBSERVATION() { 427 OMI_O23_OBSERVATION retVal = getTyped("OBSERVATION", OMI_O23_OBSERVATION.class); 428 return retVal; 429 } 430 431 432 /** 433 * Returns a specific repetition of 434 * OBSERVATION (a Group object) - creates it if necessary 435 * 436 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 437 * @throws HL7Exception if the repetition requested is more than one 438 * greater than the number of existing repetitions. 439 */ 440 public OMI_O23_OBSERVATION getOBSERVATION(int rep) { 441 OMI_O23_OBSERVATION retVal = getTyped("OBSERVATION", rep, OMI_O23_OBSERVATION.class); 442 return retVal; 443 } 444 445 /** 446 * Returns the number of existing repetitions of OBSERVATION 447 */ 448 public int getOBSERVATIONReps() { 449 return getReps("OBSERVATION"); 450 } 451 452 /** 453 * <p> 454 * Returns a non-modifiable List containing all current existing repetitions of OBSERVATION. 455 * <p> 456 * <p> 457 * Note that unlike {@link #getOBSERVATION()}, this method will not create any reps 458 * if none are already present, so an empty list may be returned. 459 * </p> 460 */ 461 public List<OMI_O23_OBSERVATION> getOBSERVATIONAll() throws HL7Exception { 462 return getAllAsList("OBSERVATION", OMI_O23_OBSERVATION.class); 463 } 464 465 /** 466 * Inserts a specific repetition of OBSERVATION (a Group object) 467 * @see AbstractGroup#insertRepetition(Structure, int) 468 */ 469 public void insertOBSERVATION(OMI_O23_OBSERVATION structure, int rep) throws HL7Exception { 470 super.insertRepetition("OBSERVATION", structure, rep); 471 } 472 473 474 /** 475 * Inserts a specific repetition of OBSERVATION (a Group object) 476 * @see AbstractGroup#insertRepetition(Structure, int) 477 */ 478 public OMI_O23_OBSERVATION insertOBSERVATION(int rep) throws HL7Exception { 479 return (OMI_O23_OBSERVATION)super.insertRepetition("OBSERVATION", rep); 480 } 481 482 483 /** 484 * Removes a specific repetition of OBSERVATION (a Group object) 485 * @see AbstractGroup#removeRepetition(String, int) 486 */ 487 public OMI_O23_OBSERVATION removeOBSERVATION(int rep) throws HL7Exception { 488 return (OMI_O23_OBSERVATION)super.removeRepetition("OBSERVATION", rep); 489 } 490 491 492 493 /** 494 * Returns 495 * the first repetition of 496 * IPC (Imaging Procedure Control Segment) - creates it if necessary 497 */ 498 public IPC getIPC() { 499 IPC retVal = getTyped("IPC", IPC.class); 500 return retVal; 501 } 502 503 504 /** 505 * Returns a specific repetition of 506 * IPC (Imaging Procedure Control Segment) - creates it if necessary 507 * 508 * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) 509 * @throws HL7Exception if the repetition requested is more than one 510 * greater than the number of existing repetitions. 511 */ 512 public IPC getIPC(int rep) { 513 IPC retVal = getTyped("IPC", rep, IPC.class); 514 return retVal; 515 } 516 517 /** 518 * Returns the number of existing repetitions of IPC 519 */ 520 public int getIPCReps() { 521 return getReps("IPC"); 522 } 523 524 /** 525 * <p> 526 * Returns a non-modifiable List containing all current existing repetitions of IPC. 527 * <p> 528 * <p> 529 * Note that unlike {@link #getIPC()}, this method will not create any reps 530 * if none are already present, so an empty list may be returned. 531 * </p> 532 */ 533 public List<IPC> getIPCAll() throws HL7Exception { 534 return getAllAsList("IPC", IPC.class); 535 } 536 537 /** 538 * Inserts a specific repetition of IPC (Imaging Procedure Control Segment) 539 * @see AbstractGroup#insertRepetition(Structure, int) 540 */ 541 public void insertIPC(IPC structure, int rep) throws HL7Exception { 542 super.insertRepetition("IPC", structure, rep); 543 } 544 545 546 /** 547 * Inserts a specific repetition of IPC (Imaging Procedure Control Segment) 548 * @see AbstractGroup#insertRepetition(Structure, int) 549 */ 550 public IPC insertIPC(int rep) throws HL7Exception { 551 return (IPC)super.insertRepetition("IPC", rep); 552 } 553 554 555 /** 556 * Removes a specific repetition of IPC (Imaging Procedure Control Segment) 557 * @see AbstractGroup#removeRepetition(String, int) 558 */ 559 public IPC removeIPC(int rep) throws HL7Exception { 560 return (IPC)super.removeRepetition("IPC", rep); 561 } 562 563 564 565} 566