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

ca.uhn.hl7v2.model.v26.segment.ORG 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.v26.segment;

// import ca.uhn.hl7v2.model.v26.group.*;
import ca.uhn.hl7v2.model.v26.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 ORG message segment (Practitioner Organization Unit). * This segment has the following fields:

*
    *
  • ORG-1: Set ID - ORG (SI) *
  • ORG-2: Organization Unit Code (CWE) optional *
  • ORG-3: Organization Unit Type Code (CWE) optional *
  • ORG-4: Primary Org Unit Indicator (ID) optional *
  • ORG-5: Practitioner Org Unit Identifier (CX) optional *
  • ORG-6: Health Care Provider Type Code (CWE) optional *
  • ORG-7: Health Care Provider Classification Code (CWE) optional *
  • ORG-8: Health Care Provider Area of Specialization Code (CWE) optional *
  • ORG-9: Effective Date Range (DR) optional *
  • ORG-10: Employment Status Code (CWE) optional *
  • ORG-11: Board Approval Indicator (ID) optional *
  • ORG-12: Primary Care Physician Indicator (ID) optional *
*/ public class ORG extends AbstractSegment { /** * Creates a new ORG segment */ public ORG(Group parent, ModelClassFactory factory) { super(parent, factory); init(factory); } private void init(ModelClassFactory factory) { try { this.add(SI.class, true, 1, 60, new Object[]{ getMessage(), new Integer(0) }, "Set ID - ORG"); this.add(CWE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(405) }, "Organization Unit Code"); this.add(CWE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(474) }, "Organization Unit Type Code"); this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "Primary Org Unit Indicator"); this.add(CX.class, false, 1, 60, new Object[]{ getMessage(), new Integer(0) }, "Practitioner Org Unit Identifier"); this.add(CWE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(452) }, "Health Care Provider Type Code"); this.add(CWE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(453) }, "Health Care Provider Classification Code"); this.add(CWE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(454) }, "Health Care Provider Area of Specialization Code"); this.add(DR.class, false, 1, 52, new Object[]{ getMessage(), new Integer(0) }, "Effective Date Range"); this.add(CWE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(66) }, "Employment Status Code"); this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "Board Approval Indicator"); this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "Primary Care Physician Indicator"); } catch(HL7Exception e) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating ORG - this is probably a bug in the source code generator.", e); } } /** * Returns * ORG-1: "Set ID - ORG" - creates it if necessary */ public SI getSetIDORG() { 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 * ORG-1: "Set ID - ORG" - creates it if necessary */ public SI getOrg1_SetIDORG() { 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 * ORG-2: "Organization Unit Code" - creates it if necessary */ public CWE getOrganizationUnitCode() { CWE ret = null; try { Type t = this.getField(2, 0); ret = (CWE)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 * ORG-2: "Organization Unit Code" - creates it if necessary */ public CWE getOrg2_OrganizationUnitCode() { CWE ret = null; try { Type t = this.getField(2, 0); ret = (CWE)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 * ORG-3: "Organization Unit Type Code" - creates it if necessary */ public CWE getOrganizationUnitTypeCode() { CWE ret = null; try { Type t = this.getField(3, 0); ret = (CWE)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 * ORG-3: "Organization Unit Type Code" - creates it if necessary */ public CWE getOrg3_OrganizationUnitTypeCode() { CWE ret = null; try { Type t = this.getField(3, 0); ret = (CWE)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 * ORG-4: "Primary Org Unit Indicator" - creates it if necessary */ public ID getPrimaryOrgUnitIndicator() { ID ret = null; try { Type t = this.getField(4, 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 * ORG-4: "Primary Org Unit Indicator" - creates it if necessary */ public ID getOrg4_PrimaryOrgUnitIndicator() { ID ret = null; try { Type t = this.getField(4, 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 * ORG-5: "Practitioner Org Unit Identifier" - creates it if necessary */ public CX getPractitionerOrgUnitIdentifier() { CX ret = null; try { Type t = this.getField(5, 0); ret = (CX)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 * ORG-5: "Practitioner Org Unit Identifier" - creates it if necessary */ public CX getOrg5_PractitionerOrgUnitIdentifier() { CX ret = null; try { Type t = this.getField(5, 0); ret = (CX)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 * ORG-6: "Health Care Provider Type Code" - creates it if necessary */ public CWE getHealthCareProviderTypeCode() { CWE ret = null; try { Type t = this.getField(6, 0); ret = (CWE)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 * ORG-6: "Health Care Provider Type Code" - creates it if necessary */ public CWE getOrg6_HealthCareProviderTypeCode() { CWE ret = null; try { Type t = this.getField(6, 0); ret = (CWE)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 * ORG-7: "Health Care Provider Classification Code" - creates it if necessary */ public CWE getHealthCareProviderClassificationCode() { CWE ret = null; try { Type t = this.getField(7, 0); ret = (CWE)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 * ORG-7: "Health Care Provider Classification Code" - creates it if necessary */ public CWE getOrg7_HealthCareProviderClassificationCode() { CWE ret = null; try { Type t = this.getField(7, 0); ret = (CWE)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 * ORG-8: "Health Care Provider Area of Specialization Code" - creates it if necessary */ public CWE getHealthCareProviderAreaOfSpecializationCode() { CWE ret = null; try { Type t = this.getField(8, 0); ret = (CWE)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 * ORG-8: "Health Care Provider Area of Specialization Code" - creates it if necessary */ public CWE getOrg8_HealthCareProviderAreaOfSpecializationCode() { CWE ret = null; try { Type t = this.getField(8, 0); ret = (CWE)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 * ORG-9: "Effective Date Range" - creates it if necessary */ public DR getEffectiveDateRange() { DR ret = null; try { Type t = this.getField(9, 0); ret = (DR)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 * ORG-9: "Effective Date Range" - creates it if necessary */ public DR getOrg9_EffectiveDateRange() { DR ret = null; try { Type t = this.getField(9, 0); ret = (DR)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 * ORG-10: "Employment Status Code" - creates it if necessary */ public CWE getEmploymentStatusCode() { CWE ret = null; try { Type t = this.getField(10, 0); ret = (CWE)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 * ORG-10: "Employment Status Code" - creates it if necessary */ public CWE getOrg10_EmploymentStatusCode() { CWE ret = null; try { Type t = this.getField(10, 0); ret = (CWE)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 * ORG-11: "Board Approval Indicator" - creates it if necessary */ public ID getBoardApprovalIndicator() { ID ret = null; try { Type t = this.getField(11, 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 * ORG-11: "Board Approval Indicator" - creates it if necessary */ public ID getOrg11_BoardApprovalIndicator() { ID ret = null; try { Type t = this.getField(11, 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 * ORG-12: "Primary Care Physician Indicator" - creates it if necessary */ public ID getPrimaryCarePhysicianIndicator() { ID ret = null; try { Type t = this.getField(12, 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 * ORG-12: "Primary Care Physician Indicator" - creates it if necessary */ public ID getOrg12_PrimaryCarePhysicianIndicator() { ID ret = null; try { Type t = this.getField(12, 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; } /** {@inheritDoc} */ protected Type createNewTypeWithoutReflection(int field) { switch (field) { case 0: return new SI(getMessage()); case 1: return new CWE(getMessage()); case 2: return new CWE(getMessage()); case 3: return new ID(getMessage(), new Integer( 136 )); case 4: return new CX(getMessage()); case 5: return new CWE(getMessage()); case 6: return new CWE(getMessage()); case 7: return new CWE(getMessage()); case 8: return new DR(getMessage()); case 9: return new CWE(getMessage()); case 10: return new ID(getMessage(), new Integer( 136 )); case 11: return new ID(getMessage(), new Integer( 136 )); default: return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy