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