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

ca.uhn.hl7v2.model.v23.segment.DG1 Maven / Gradle / Ivy

There is a newer version: 2.3
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/
 */

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

// import ca.uhn.hl7v2.model.v23.group.*;
import ca.uhn.hl7v2.model.v23.datatype.*;
import ca.uhn.log.HapiLogFactory;
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 DG1 message segment (Diagnosis). * This segment has the following fields:

*
    *
  • DG1-1: Set ID - Diagnosis (SI) *
  • DG1-2: Diagnosis Coding Method (ID) optional *
  • DG1-3: Diagnosis Code (CE) optional *
  • DG1-4: Diagnosis Description (ST) optional *
  • DG1-5: Diagnosis Date/Time (TS) optional *
  • DG1-6: Diagnosis Type (IS) *
  • DG1-7: Major Diagnostic Category (CE) optional *
  • DG1-8: Diagnostic Related Group (CE) optional *
  • DG1-9: DRG Approval Indicator (ID) optional *
  • DG1-10: DRG Grouper Review Code (IS) optional *
  • DG1-11: Outlier Type (CE) optional *
  • DG1-12: Outlier Days (NM) optional *
  • DG1-13: Outlier Cost (CP) optional *
  • DG1-14: Grouper Version and Type (ST) optional *
  • DG1-15: Diagnosis Priority (NM) optional *
  • DG1-16: Diagnosing Clinician (XCN) optional repeating *
  • DG1-17: Diagnosis Classification (IS) optional *
  • DG1-18: Confidential Indicator (ID) optional *
  • DG1-19: Attestation Date/Time (TS) optional *
*/ public class DG1 extends AbstractSegment { /** * Creates a new DG1 segment */ public DG1(Group parent, ModelClassFactory factory) { super(parent, factory); init(factory); } private void init(ModelClassFactory factory) { try { this.add(SI.class, true, 1, 4, new Object[]{ getMessage(), new Integer(0) }, "Set ID - Diagnosis"); this.add(ID.class, false, 1, 2, new Object[]{ getMessage() }, "Diagnosis Coding Method"); this.add(CE.class, false, 1, 60, new Object[]{ getMessage(), new Integer(51) }, "Diagnosis Code"); this.add(ST.class, false, 1, 40, new Object[]{ getMessage(), new Integer(0) }, "Diagnosis Description"); this.add(TS.class, false, 1, 26, new Object[]{ getMessage(), new Integer(0) }, "Diagnosis Date/Time"); this.add(IS.class, true, 1, 2, new Object[]{ getMessage() }, "Diagnosis Type"); this.add(CE.class, false, 1, 60, new Object[]{ getMessage(), new Integer(118) }, "Major Diagnostic Category"); this.add(CE.class, false, 1, 4, new Object[]{ getMessage(), new Integer(55) }, "Diagnostic Related Group"); this.add(ID.class, false, 1, 2, new Object[]{ getMessage() }, "DRG Approval Indicator"); this.add(IS.class, false, 1, 2, new Object[]{ getMessage() }, "DRG Grouper Review Code"); this.add(CE.class, false, 1, 60, new Object[]{ getMessage(), new Integer(83) }, "Outlier Type"); this.add(NM.class, false, 1, 3, new Object[]{ getMessage(), new Integer(0) }, "Outlier Days"); this.add(CP.class, false, 1, 12, new Object[]{ getMessage(), new Integer(0) }, "Outlier Cost"); this.add(ST.class, false, 1, 4, new Object[]{ getMessage(), new Integer(0) }, "Grouper Version and Type"); this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Diagnosis Priority"); this.add(XCN.class, false, 0, 60, new Object[]{ getMessage(), new Integer(0) }, "Diagnosing Clinician"); this.add(IS.class, false, 1, 3, new Object[]{ getMessage() }, "Diagnosis Classification"); this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "Confidential Indicator"); this.add(TS.class, false, 1, 26, new Object[]{ getMessage(), new Integer(0) }, "Attestation Date/Time"); } catch(HL7Exception e) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating DG1 - this is probably a bug in the source code generator.", e); } } /** * Returns * DG1-1: "Set ID - Diagnosis" - creates it if necessary */ public SI getSetIDDiagnosis() { SI ret = null; try { Type t = this.getField(1, 0); ret = (SI)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-1: "Set ID - Diagnosis" - creates it if necessary */ public SI getDg11_SetIDDiagnosis() { SI ret = null; try { Type t = this.getField(1, 0); ret = (SI)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-2: "Diagnosis Coding Method" - creates it if necessary */ public ID getDiagnosisCodingMethod() { ID ret = null; try { Type t = this.getField(2, 0); ret = (ID)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-2: "Diagnosis Coding Method" - creates it if necessary */ public ID getDg12_DiagnosisCodingMethod() { ID ret = null; try { Type t = this.getField(2, 0); ret = (ID)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-3: "Diagnosis Code" - creates it if necessary */ public CE getDiagnosisCode() { CE ret = null; try { Type t = this.getField(3, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-3: "Diagnosis Code" - creates it if necessary */ public CE getDg13_DiagnosisCode() { CE ret = null; try { Type t = this.getField(3, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-4: "Diagnosis Description" - creates it if necessary */ public ST getDiagnosisDescription() { ST ret = null; try { Type t = this.getField(4, 0); ret = (ST)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-4: "Diagnosis Description" - creates it if necessary */ public ST getDg14_DiagnosisDescription() { ST ret = null; try { Type t = this.getField(4, 0); ret = (ST)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-5: "Diagnosis Date/Time" - creates it if necessary */ public TS getDiagnosisDateTime() { TS ret = null; try { Type t = this.getField(5, 0); ret = (TS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-5: "Diagnosis Date/Time" - creates it if necessary */ public TS getDg15_DiagnosisDateTime() { TS ret = null; try { Type t = this.getField(5, 0); ret = (TS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-6: "Diagnosis Type" - creates it if necessary */ public IS getDiagnosisType() { IS ret = null; try { Type t = this.getField(6, 0); ret = (IS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-6: "Diagnosis Type" - creates it if necessary */ public IS getDg16_DiagnosisType() { IS ret = null; try { Type t = this.getField(6, 0); ret = (IS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-7: "Major Diagnostic Category" - creates it if necessary */ public CE getMajorDiagnosticCategory() { CE ret = null; try { Type t = this.getField(7, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-7: "Major Diagnostic Category" - creates it if necessary */ public CE getDg17_MajorDiagnosticCategory() { CE ret = null; try { Type t = this.getField(7, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-8: "Diagnostic Related Group" - creates it if necessary */ public CE getDiagnosticRelatedGroup() { CE ret = null; try { Type t = this.getField(8, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-8: "Diagnostic Related Group" - creates it if necessary */ public CE getDg18_DiagnosticRelatedGroup() { CE ret = null; try { Type t = this.getField(8, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-9: "DRG Approval Indicator" - creates it if necessary */ public ID getDRGApprovalIndicator() { ID ret = null; try { Type t = this.getField(9, 0); ret = (ID)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-9: "DRG Approval Indicator" - creates it if necessary */ public ID getDg19_DRGApprovalIndicator() { ID ret = null; try { Type t = this.getField(9, 0); ret = (ID)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-10: "DRG Grouper Review Code" - creates it if necessary */ public IS getDRGGrouperReviewCode() { IS ret = null; try { Type t = this.getField(10, 0); ret = (IS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-10: "DRG Grouper Review Code" - creates it if necessary */ public IS getDg110_DRGGrouperReviewCode() { IS ret = null; try { Type t = this.getField(10, 0); ret = (IS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-11: "Outlier Type" - creates it if necessary */ public CE getOutlierType() { CE ret = null; try { Type t = this.getField(11, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-11: "Outlier Type" - creates it if necessary */ public CE getDg111_OutlierType() { CE ret = null; try { Type t = this.getField(11, 0); ret = (CE)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-12: "Outlier Days" - creates it if necessary */ public NM getOutlierDays() { NM ret = null; try { Type t = this.getField(12, 0); ret = (NM)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-12: "Outlier Days" - creates it if necessary */ public NM getDg112_OutlierDays() { NM ret = null; try { Type t = this.getField(12, 0); ret = (NM)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-13: "Outlier Cost" - creates it if necessary */ public CP getOutlierCost() { CP ret = null; try { Type t = this.getField(13, 0); ret = (CP)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-13: "Outlier Cost" - creates it if necessary */ public CP getDg113_OutlierCost() { CP ret = null; try { Type t = this.getField(13, 0); ret = (CP)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-14: "Grouper Version and Type" - creates it if necessary */ public ST getGrouperVersionAndType() { ST ret = null; try { Type t = this.getField(14, 0); ret = (ST)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-14: "Grouper Version and Type" - creates it if necessary */ public ST getDg114_GrouperVersionAndType() { ST ret = null; try { Type t = this.getField(14, 0); ret = (ST)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-15: "Diagnosis Priority" - creates it if necessary */ public NM getDiagnosisPriority() { NM ret = null; try { Type t = this.getField(15, 0); ret = (NM)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-15: "Diagnosis Priority" - creates it if necessary */ public NM getDg115_DiagnosisPriority() { NM ret = null; try { Type t = this.getField(15, 0); ret = (NM)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns all repetitions of Diagnosing Clinician (DG1-16). */ public XCN[] getDiagnosingClinician() { XCN[] ret = null; try { Type[] t = this.getField(16); ret = new XCN[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (XCN)t[i]; } } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns a count of the current number of repetitions of Diagnosing Clinician (DG1-16). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getDiagnosingClinicianReps() { XCN[] ret = null; try { Type[] t = this.getField(16); return t.length; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } } /** * Returns a specific repetition of * DG1-16: "Diagnosing Clinician" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XCN getDiagnosingClinician(int rep) { XCN ret = null; try { Type t = this.getField(16, rep); ret = (XCN)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns a specific repetition of * DG1-16: "Diagnosing Clinician" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XCN getDg116_DiagnosingClinician(int rep) { XCN ret = null; try { Type t = this.getField(16, rep); ret = (XCN)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns a count of the current number of repetitions of Diagnosing Clinician (DG1-16). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getDg116_DiagnosingClinicianReps() { XCN[] ret = null; try { Type[] t = this.getField(16); return t.length; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } } /** * Inserts a repetition of * DG1-16: "Diagnosing Clinician" 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 insertDiagnosingClinician(int rep) throws HL7Exception { return (XCN) super.insertRepetition(16, rep); } /** * Inserts a repetition of * DG1-16: "Diagnosing Clinician" 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 insertDg116_DiagnosingClinician(int rep) throws HL7Exception { return (XCN) super.insertRepetition(16, rep); } /** * Removes a repetition of * DG1-16: "Diagnosing Clinician" 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 removeDiagnosingClinician(int rep) throws HL7Exception { return (XCN) super.removeRepetition(16, rep); } /** * Removes a repetition of * DG1-16: "Diagnosing Clinician" 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 removeDg116_DiagnosingClinician(int rep) throws HL7Exception { return (XCN) super.removeRepetition(16, rep); } /** * Returns * DG1-17: "Diagnosis Classification" - creates it if necessary */ public IS getDiagnosisClassification() { IS ret = null; try { Type t = this.getField(17, 0); ret = (IS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-17: "Diagnosis Classification" - creates it if necessary */ public IS getDg117_DiagnosisClassification() { IS ret = null; try { Type t = this.getField(17, 0); ret = (IS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-18: "Confidential Indicator" - creates it if necessary */ public ID getConfidentialIndicator() { ID ret = null; try { Type t = this.getField(18, 0); ret = (ID)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-18: "Confidential Indicator" - creates it if necessary */ public ID getDg118_ConfidentialIndicator() { ID ret = null; try { Type t = this.getField(18, 0); ret = (ID)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-19: "Attestation Date/Time" - creates it if necessary */ public TS getAttestationDateTime() { TS ret = null; try { Type t = this.getField(19, 0); ret = (TS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** * Returns * DG1-19: "Attestation Date/Time" - creates it if necessary */ public TS getDg119_AttestationDateTime() { TS ret = null; try { Type t = this.getField(19, 0); ret = (TS)t; } catch (ClassCastException cce) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new RuntimeException(cce); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new RuntimeException(he); } return ret; } /** {@inheritDoc} */ protected Type createNewTypeWithoutReflection(int field) { switch (field) { case 0: return new SI(getMessage()); case 1: return new ID(getMessage(), new Integer( 53 )); case 2: return new CE(getMessage()); case 3: return new ST(getMessage()); case 4: return new TS(getMessage()); case 5: return new IS(getMessage(), new Integer( 52 )); case 6: return new CE(getMessage()); case 7: return new CE(getMessage()); case 8: return new ID(getMessage(), new Integer( 136 )); case 9: return new IS(getMessage(), new Integer( 56 )); case 10: return new CE(getMessage()); case 11: return new NM(getMessage()); case 12: return new CP(getMessage()); case 13: return new ST(getMessage()); case 14: return new NM(getMessage()); case 15: return new XCN(getMessage()); case 16: return new IS(getMessage(), new Integer( 228 )); case 17: return new ID(getMessage(), new Integer( 136 )); case 18: return new TS(getMessage()); default: return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy