All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.uhn.hl7v2.model.v26.segment.QRD Maven / Gradle / Ivy

There is a newer version: 2.5.1
Show newest version
/*
 * This class is an auto-generated source file for a HAPI
 * HL7 v2.x standard structure class.
 *
 * For more information, visit: http://hl7api.sourceforge.net/
 * 
 * The contents of this file are subject to the Mozilla Public License Version 1.1 
 * (the "License"); you may not use this file except in compliance with the License. 
 * You may obtain a copy of the License at http://www.mozilla.org/MPL/ 
 * Software distributed under the License is distributed on an "AS IS" basis, 
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
 * specific language governing rights and limitations under the License. 
 * 
 * The Original Code is "[file_name]".  Description: 
 * "[one_line_description]" 
 * 
 * The Initial Developer of the Original Code is University Health Network. Copyright (C) 
 * 2012.  All Rights Reserved. 
 * 
 * Contributor(s): ______________________________________. 
 * 
 * Alternatively, the contents of this file may be used under the terms of the 
 * GNU General Public License (the  "GPL"), in which case the provisions of the GPL are 
 * applicable instead of those above.  If you wish to allow use of your version of this 
 * file only under the terms of the GPL and not to allow others to use your version 
 * of this file under the MPL, indicate your decision by deleting  the provisions above 
 * and replace  them with the notice and other provisions required by the GPL License.  
 * If you do not delete the provisions above, a recipient may use your version of 
 * this file under either the MPL or the GPL. 
 * 
 */


package ca.uhn.hl7v2.model.v26.segment;

// import ca.uhn.hl7v2.model.v26.group.*;
import ca.uhn.hl7v2.model.v26.datatype.*;
import ca.uhn.hl7v2.HL7Exception;
import ca.uhn.hl7v2.parser.ModelClassFactory;
import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
import ca.uhn.hl7v2.model.AbstractMessage;
import ca.uhn.hl7v2.model.Group;
import ca.uhn.hl7v2.model.Type;
import ca.uhn.hl7v2.model.AbstractSegment;
import ca.uhn.hl7v2.model.Varies;


/**
 *

Represents an HL7 QRD message segment (Original-Style Query Definition). * This segment has the following fields:

*
    *
  • QRD-1: Query Date/Time (DTM) *
  • QRD-2: Query Format Code (ID) *
  • QRD-3: Query Priority (ID) *
  • QRD-4: Query ID (ST) *
  • QRD-5: Deferred Response Type (ID) optional *
  • QRD-6: Deferred Response Date/Time (DTM) optional *
  • QRD-7: Quantity Limited Request (CQ) *
  • QRD-8: Who Subject Filter (XCN) repeating *
  • QRD-9: What Subject Filter (CWE) repeating *
  • QRD-10: What Department Data Code (CWE) repeating *
  • QRD-11: What Data Code Value Qual. (VR) optional repeating *
  • QRD-12: Query Results Level (ID) optional *
*/ @SuppressWarnings("unused") public class QRD extends AbstractSegment { /** * Creates a new QRD segment */ public QRD(Group parent, ModelClassFactory factory) { super(parent, factory); init(factory); } private void init(ModelClassFactory factory) { try { this.add(DTM.class, true, 1, 24, new Object[]{ getMessage() }, "Query Date/Time"); this.add(ID.class, true, 1, 1, new Object[]{ getMessage(), new Integer(106) }, "Query Format Code"); this.add(ID.class, true, 1, 1, new Object[]{ getMessage(), new Integer(91) }, "Query Priority"); this.add(ST.class, true, 1, 10, new Object[]{ getMessage() }, "Query ID"); this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), new Integer(107) }, "Deferred Response Type"); this.add(DTM.class, false, 1, 24, new Object[]{ getMessage() }, "Deferred Response Date/Time"); this.add(CQ.class, true, 1, 10, new Object[]{ getMessage() }, "Quantity Limited Request"); this.add(XCN.class, true, 0, 250, new Object[]{ getMessage() }, "Who Subject Filter"); this.add(CWE.class, true, 0, 250, new Object[]{ getMessage() }, "What Subject Filter"); this.add(CWE.class, true, 0, 250, new Object[]{ getMessage() }, "What Department Data Code"); this.add(VR.class, false, 0, 20, new Object[]{ getMessage() }, "What Data Code Value Qual."); this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), new Integer(108) }, "Query Results Level"); } catch(HL7Exception e) { log.error("Unexpected error creating QRD - this is probably a bug in the source code generator.", e); } } /** * Returns * QRD-1: "Query Date/Time" - creates it if necessary */ public DTM getQueryDateTime() { DTM retVal = this.getTypedField(1, 0); return retVal; } /** * Returns * QRD-1: "Query Date/Time" - creates it if necessary */ public DTM getQrd1_QueryDateTime() { DTM retVal = this.getTypedField(1, 0); return retVal; } /** * Returns * QRD-2: "Query Format Code" - creates it if necessary */ public ID getQueryFormatCode() { ID retVal = this.getTypedField(2, 0); return retVal; } /** * Returns * QRD-2: "Query Format Code" - creates it if necessary */ public ID getQrd2_QueryFormatCode() { ID retVal = this.getTypedField(2, 0); return retVal; } /** * Returns * QRD-3: "Query Priority" - creates it if necessary */ public ID getQueryPriority() { ID retVal = this.getTypedField(3, 0); return retVal; } /** * Returns * QRD-3: "Query Priority" - creates it if necessary */ public ID getQrd3_QueryPriority() { ID retVal = this.getTypedField(3, 0); return retVal; } /** * Returns * QRD-4: "Query ID" - creates it if necessary */ public ST getQueryID() { ST retVal = this.getTypedField(4, 0); return retVal; } /** * Returns * QRD-4: "Query ID" - creates it if necessary */ public ST getQrd4_QueryID() { ST retVal = this.getTypedField(4, 0); return retVal; } /** * Returns * QRD-5: "Deferred Response Type" - creates it if necessary */ public ID getDeferredResponseType() { ID retVal = this.getTypedField(5, 0); return retVal; } /** * Returns * QRD-5: "Deferred Response Type" - creates it if necessary */ public ID getQrd5_DeferredResponseType() { ID retVal = this.getTypedField(5, 0); return retVal; } /** * Returns * QRD-6: "Deferred Response Date/Time" - creates it if necessary */ public DTM getDeferredResponseDateTime() { DTM retVal = this.getTypedField(6, 0); return retVal; } /** * Returns * QRD-6: "Deferred Response Date/Time" - creates it if necessary */ public DTM getQrd6_DeferredResponseDateTime() { DTM retVal = this.getTypedField(6, 0); return retVal; } /** * Returns * QRD-7: "Quantity Limited Request" - creates it if necessary */ public CQ getQuantityLimitedRequest() { CQ retVal = this.getTypedField(7, 0); return retVal; } /** * Returns * QRD-7: "Quantity Limited Request" - creates it if necessary */ public CQ getQrd7_QuantityLimitedRequest() { CQ retVal = this.getTypedField(7, 0); return retVal; } /** * Returns all repetitions of Who Subject Filter (QRD-8). */ public XCN[] getWhoSubjectFilter() { XCN[] retVal = this.getTypedField(8, new XCN[0]); return retVal; } /** * Returns all repetitions of Who Subject Filter (QRD-8). */ public XCN[] getQrd8_WhoSubjectFilter() { XCN[] retVal = this.getTypedField(8, new XCN[0]); return retVal; } /** * Returns a count of the current number of repetitions of Who Subject Filter (QRD-8). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getWhoSubjectFilterReps() { return this.getReps(8); } /** * Returns a specific repetition of * QRD-8: "Who Subject Filter" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XCN getWhoSubjectFilter(int rep) { XCN retVal = this.getTypedField(8, rep); return retVal; } /** * Returns a specific repetition of * QRD-8: "Who Subject Filter" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XCN getQrd8_WhoSubjectFilter(int rep) { XCN retVal = this.getTypedField(8, rep); return retVal; } /** * Returns a count of the current number of repetitions of Who Subject Filter (QRD-8). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getQrd8_WhoSubjectFilterReps() { return this.getReps(8); } /** * Inserts a repetition of * QRD-8: "Who Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public XCN insertWhoSubjectFilter(int rep) throws HL7Exception { return (XCN) super.insertRepetition(8, rep); } /** * Inserts a repetition of * QRD-8: "Who Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public XCN insertQrd8_WhoSubjectFilter(int rep) throws HL7Exception { return (XCN) super.insertRepetition(8, rep); } /** * Removes a repetition of * QRD-8: "Who Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public XCN removeWhoSubjectFilter(int rep) throws HL7Exception { return (XCN) super.removeRepetition(8, rep); } /** * Removes a repetition of * QRD-8: "Who Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public XCN removeQrd8_WhoSubjectFilter(int rep) throws HL7Exception { return (XCN) super.removeRepetition(8, rep); } /** * Returns all repetitions of What Subject Filter (QRD-9). */ public CWE[] getWhatSubjectFilter() { CWE[] retVal = this.getTypedField(9, new CWE[0]); return retVal; } /** * Returns all repetitions of What Subject Filter (QRD-9). */ public CWE[] getQrd9_WhatSubjectFilter() { CWE[] retVal = this.getTypedField(9, new CWE[0]); return retVal; } /** * Returns a count of the current number of repetitions of What Subject Filter (QRD-9). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getWhatSubjectFilterReps() { return this.getReps(9); } /** * Returns a specific repetition of * QRD-9: "What Subject Filter" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getWhatSubjectFilter(int rep) { CWE retVal = this.getTypedField(9, rep); return retVal; } /** * Returns a specific repetition of * QRD-9: "What Subject Filter" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getQrd9_WhatSubjectFilter(int rep) { CWE retVal = this.getTypedField(9, rep); return retVal; } /** * Returns a count of the current number of repetitions of What Subject Filter (QRD-9). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getQrd9_WhatSubjectFilterReps() { return this.getReps(9); } /** * Inserts a repetition of * QRD-9: "What Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertWhatSubjectFilter(int rep) throws HL7Exception { return (CWE) super.insertRepetition(9, rep); } /** * Inserts a repetition of * QRD-9: "What Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertQrd9_WhatSubjectFilter(int rep) throws HL7Exception { return (CWE) super.insertRepetition(9, rep); } /** * Removes a repetition of * QRD-9: "What Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeWhatSubjectFilter(int rep) throws HL7Exception { return (CWE) super.removeRepetition(9, rep); } /** * Removes a repetition of * QRD-9: "What Subject Filter" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeQrd9_WhatSubjectFilter(int rep) throws HL7Exception { return (CWE) super.removeRepetition(9, rep); } /** * Returns all repetitions of What Department Data Code (QRD-10). */ public CWE[] getWhatDepartmentDataCode() { CWE[] retVal = this.getTypedField(10, new CWE[0]); return retVal; } /** * Returns all repetitions of What Department Data Code (QRD-10). */ public CWE[] getQrd10_WhatDepartmentDataCode() { CWE[] retVal = this.getTypedField(10, new CWE[0]); return retVal; } /** * Returns a count of the current number of repetitions of What Department Data Code (QRD-10). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getWhatDepartmentDataCodeReps() { return this.getReps(10); } /** * Returns a specific repetition of * QRD-10: "What Department Data Code" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getWhatDepartmentDataCode(int rep) { CWE retVal = this.getTypedField(10, rep); return retVal; } /** * Returns a specific repetition of * QRD-10: "What Department Data Code" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getQrd10_WhatDepartmentDataCode(int rep) { CWE retVal = this.getTypedField(10, rep); return retVal; } /** * Returns a count of the current number of repetitions of What Department Data Code (QRD-10). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getQrd10_WhatDepartmentDataCodeReps() { return this.getReps(10); } /** * Inserts a repetition of * QRD-10: "What Department Data Code" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertWhatDepartmentDataCode(int rep) throws HL7Exception { return (CWE) super.insertRepetition(10, rep); } /** * Inserts a repetition of * QRD-10: "What Department Data Code" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertQrd10_WhatDepartmentDataCode(int rep) throws HL7Exception { return (CWE) super.insertRepetition(10, rep); } /** * Removes a repetition of * QRD-10: "What Department Data Code" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeWhatDepartmentDataCode(int rep) throws HL7Exception { return (CWE) super.removeRepetition(10, rep); } /** * Removes a repetition of * QRD-10: "What Department Data Code" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeQrd10_WhatDepartmentDataCode(int rep) throws HL7Exception { return (CWE) super.removeRepetition(10, rep); } /** * Returns all repetitions of What Data Code Value Qual. (QRD-11). */ public VR[] getWhatDataCodeValueQual() { VR[] retVal = this.getTypedField(11, new VR[0]); return retVal; } /** * Returns all repetitions of What Data Code Value Qual. (QRD-11). */ public VR[] getQrd11_WhatDataCodeValueQual() { VR[] retVal = this.getTypedField(11, new VR[0]); return retVal; } /** * Returns a count of the current number of repetitions of What Data Code Value Qual. (QRD-11). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getWhatDataCodeValueQualReps() { return this.getReps(11); } /** * Returns a specific repetition of * QRD-11: "What Data Code Value Qual." - creates it if necessary * * @param rep The repetition index (0-indexed) */ public VR getWhatDataCodeValueQual(int rep) { VR retVal = this.getTypedField(11, rep); return retVal; } /** * Returns a specific repetition of * QRD-11: "What Data Code Value Qual." - creates it if necessary * * @param rep The repetition index (0-indexed) */ public VR getQrd11_WhatDataCodeValueQual(int rep) { VR retVal = this.getTypedField(11, rep); return retVal; } /** * Returns a count of the current number of repetitions of What Data Code Value Qual. (QRD-11). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getQrd11_WhatDataCodeValueQualReps() { return this.getReps(11); } /** * Inserts a repetition of * QRD-11: "What Data Code Value Qual." at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public VR insertWhatDataCodeValueQual(int rep) throws HL7Exception { return (VR) super.insertRepetition(11, rep); } /** * Inserts a repetition of * QRD-11: "What Data Code Value Qual." at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public VR insertQrd11_WhatDataCodeValueQual(int rep) throws HL7Exception { return (VR) super.insertRepetition(11, rep); } /** * Removes a repetition of * QRD-11: "What Data Code Value Qual." at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public VR removeWhatDataCodeValueQual(int rep) throws HL7Exception { return (VR) super.removeRepetition(11, rep); } /** * Removes a repetition of * QRD-11: "What Data Code Value Qual." at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public VR removeQrd11_WhatDataCodeValueQual(int rep) throws HL7Exception { return (VR) super.removeRepetition(11, rep); } /** * Returns * QRD-12: "Query Results Level" - creates it if necessary */ public ID getQueryResultsLevel() { ID retVal = this.getTypedField(12, 0); return retVal; } /** * Returns * QRD-12: "Query Results Level" - creates it if necessary */ public ID getQrd12_QueryResultsLevel() { ID retVal = this.getTypedField(12, 0); return retVal; } /** {@inheritDoc} */ protected Type createNewTypeWithoutReflection(int field) { switch (field) { case 0: return new DTM(getMessage()); case 1: return new ID(getMessage(), new Integer( 106 )); case 2: return new ID(getMessage(), new Integer( 91 )); case 3: return new ST(getMessage()); case 4: return new ID(getMessage(), new Integer( 107 )); case 5: return new DTM(getMessage()); case 6: return new CQ(getMessage()); case 7: return new XCN(getMessage()); case 8: return new CWE(getMessage()); case 9: return new CWE(getMessage()); case 10: return new VR(getMessage()); case 11: return new ID(getMessage(), new Integer( 108 )); default: return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy