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

ca.uhn.hl7v2.model.v23.segment.DB1 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 DB1 message segment (Disability Segment). * This segment has the following fields:

*
    *
  • DB1-1: Set ID - DB1 (SI) *
  • DB1-2: Disabled person code (IS) optional *
  • DB1-3: Disabled person identifier (CX) optional repeating *
  • DB1-4: Disabled Indicator (ID) optional *
  • DB1-5: Disability start date (DT) optional *
  • DB1-6: Disability end date (DT) optional *
  • DB1-7: Disability return to work date (DT) optional *
  • DB1-8: Disability unable to work date (DT) optional *
*/ public class DB1 extends AbstractSegment { /** * Creates a new DB1 segment */ public DB1(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 - DB1"); this.add(IS.class, false, 1, 2, new Object[]{ getMessage() }, "Disabled person code"); this.add(CX.class, false, 0, 32, new Object[]{ getMessage(), new Integer(0) }, "Disabled person identifier"); this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "Disabled Indicator"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "Disability start date"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "Disability end date"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "Disability return to work date"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "Disability unable to work date"); } catch(HL7Exception e) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating DB1 - this is probably a bug in the source code generator.", e); } } /** * Returns * DB1-1: "Set ID - DB1" - creates it if necessary */ public SI getSetIDDB1() { 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 * DB1-1: "Set ID - DB1" - creates it if necessary */ public SI getDb11_SetIDDB1() { 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 * DB1-2: "Disabled person code" - creates it if necessary */ public IS getDisabledPersonCode() { IS ret = null; try { Type t = this.getField(2, 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 * DB1-2: "Disabled person code" - creates it if necessary */ public IS getDb12_DisabledPersonCode() { IS ret = null; try { Type t = this.getField(2, 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 all repetitions of Disabled person identifier (DB1-3). */ public CX[] getDisabledPersonIdentifier() { CX[] ret = null; try { Type[] t = this.getField(3); ret = new CX[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (CX)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 Disabled person identifier (DB1-3). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getDisabledPersonIdentifierReps() { CX[] ret = null; try { Type[] t = this.getField(3); 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 * DB1-3: "Disabled person identifier" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CX getDisabledPersonIdentifier(int rep) { CX ret = null; try { Type t = this.getField(3, rep); 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 a specific repetition of * DB1-3: "Disabled person identifier" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CX getDb13_DisabledPersonIdentifier(int rep) { CX ret = null; try { Type t = this.getField(3, rep); 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 a count of the current number of repetitions of Disabled person identifier (DB1-3). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getDb13_DisabledPersonIdentifierReps() { CX[] ret = null; try { Type[] t = this.getField(3); 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 * DB1-3: "Disabled person identifier" 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 CX insertDisabledPersonIdentifier(int rep) throws HL7Exception { return (CX) super.insertRepetition(3, rep); } /** * Inserts a repetition of * DB1-3: "Disabled person identifier" 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 CX insertDb13_DisabledPersonIdentifier(int rep) throws HL7Exception { return (CX) super.insertRepetition(3, rep); } /** * Removes a repetition of * DB1-3: "Disabled person identifier" 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 CX removeDisabledPersonIdentifier(int rep) throws HL7Exception { return (CX) super.removeRepetition(3, rep); } /** * Removes a repetition of * DB1-3: "Disabled person identifier" 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 CX removeDb13_DisabledPersonIdentifier(int rep) throws HL7Exception { return (CX) super.removeRepetition(3, rep); } /** * Returns * DB1-4: "Disabled Indicator" - creates it if necessary */ public ID getDisabledIndicator() { 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 * DB1-4: "Disabled Indicator" - creates it if necessary */ public ID getDb14_DisabledIndicator() { 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 * DB1-5: "Disability start date" - creates it if necessary */ public DT getDisabilityStartDate() { DT ret = null; try { Type t = this.getField(5, 0); ret = (DT)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 * DB1-5: "Disability start date" - creates it if necessary */ public DT getDb15_DisabilityStartDate() { DT ret = null; try { Type t = this.getField(5, 0); ret = (DT)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 * DB1-6: "Disability end date" - creates it if necessary */ public DT getDisabilityEndDate() { DT ret = null; try { Type t = this.getField(6, 0); ret = (DT)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 * DB1-6: "Disability end date" - creates it if necessary */ public DT getDb16_DisabilityEndDate() { DT ret = null; try { Type t = this.getField(6, 0); ret = (DT)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 * DB1-7: "Disability return to work date" - creates it if necessary */ public DT getDisabilityReturnToWorkDate() { DT ret = null; try { Type t = this.getField(7, 0); ret = (DT)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 * DB1-7: "Disability return to work date" - creates it if necessary */ public DT getDb17_DisabilityReturnToWorkDate() { DT ret = null; try { Type t = this.getField(7, 0); ret = (DT)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 * DB1-8: "Disability unable to work date" - creates it if necessary */ public DT getDisabilityUnableToWorkDate() { DT ret = null; try { Type t = this.getField(8, 0); ret = (DT)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 * DB1-8: "Disability unable to work date" - creates it if necessary */ public DT getDb18_DisabilityUnableToWorkDate() { DT ret = null; try { Type t = this.getField(8, 0); ret = (DT)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 IS(getMessage(), new Integer( 33 )); case 2: return new CX(getMessage()); case 3: return new ID(getMessage(), new Integer( 136 )); case 4: return new DT(getMessage()); case 5: return new DT(getMessage()); case 6: return new DT(getMessage()); case 7: return new DT(getMessage()); default: return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy