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

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

*
    *
  • UB1-1: Set ID - UB1 (SI) optional *
  • UB1-2: Blood Deductible (43) (NM) optional *
  • UB1-3: Blood Furnished Pints Of (40) (NM) optional *
  • UB1-4: Blood Replaced Pints (41) (NM) optional *
  • UB1-5: Blood Not Replaced Pints(42) (NM) optional *
  • UB1-6: Co Insurance Days (25) (NM) optional *
  • UB1-7: Condition Code (35-39) (IS) optional repeating *
  • UB1-8: Covered Days (23) (NM) optional *
  • UB1-9: Non Covered Days (24) (NM) optional *
  • UB1-10: Value Amount & Code (46-49) (CM_UVC) optional repeating *
  • UB1-11: Number Of Grace Days (90) (NM) optional *
  • UB1-12: Spec Program Indicator (44) (CE) optional *
  • UB1-13: PSRO/UR Approval Indicator (87) (ID) optional *
  • UB1-14: PSRO/UR Approved Stay Fm (88) (DT) optional *
  • UB1-15: PSRO/UR Approved Stay To (89) (DT) optional *
  • UB1-16: Occurrence (28 32) (CM_OCD) optional repeating *
  • UB1-17: Occurrence Span (33) (ID) optional *
  • UB1-18: Occur Span Start Date(33) (DT) optional *
  • UB1-19: Occur Span End Date (33) (DT) optional *
  • UB1-20: UB 82 Locator 2 (ST) optional *
  • UB1-21: UB 82 Locator 9 (ST) optional *
  • UB1-22: UB 82 Locator 27 (ST) optional *
  • UB1-23: UB 82 Locator 45 (ST) optional *
*/ public class UB1 extends AbstractSegment { /** * Creates a new UB1 segment */ public UB1(Group parent, ModelClassFactory factory) { super(parent, factory); init(factory); } private void init(ModelClassFactory factory) { try { this.add(SI.class, false, 1, 4, new Object[]{ getMessage(), new Integer(0) }, "Set ID - UB1"); this.add(NM.class, false, 1, 1, new Object[]{ getMessage(), new Integer(0) }, "Blood Deductible (43)"); this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Blood Furnished Pints Of (40)"); this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Blood Replaced Pints (41)"); this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Blood Not Replaced Pints(42)"); this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Co Insurance Days (25)"); this.add(IS.class, false, 5, 2, new Object[]{ getMessage() }, "Condition Code (35-39)"); this.add(NM.class, false, 1, 3, new Object[]{ getMessage(), new Integer(0) }, "Covered Days (23)"); this.add(NM.class, false, 1, 3, new Object[]{ getMessage(), new Integer(0) }, "Non Covered Days (24)"); this.add(CM_UVC.class, false, 8, 12, new Object[]{ getMessage(), new Integer(153) }, "Value Amount & Code (46-49)"); this.add(NM.class, false, 1, 2, new Object[]{ getMessage(), new Integer(0) }, "Number Of Grace Days (90)"); this.add(CE.class, false, 1, 60, new Object[]{ getMessage(), new Integer(0) }, "Spec Program Indicator (44)"); this.add(ID.class, false, 1, 60, new Object[]{ getMessage() }, "PSRO/UR Approval Indicator (87)"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "PSRO/UR Approved Stay Fm (88)"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "PSRO/UR Approved Stay To (89)"); this.add(CM_OCD.class, false, 5, 20, new Object[]{ getMessage(), new Integer(0) }, "Occurrence (28 32)"); this.add(ID.class, false, 1, 2, new Object[]{ getMessage() }, "Occurrence Span (33)"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "Occur Span Start Date(33)"); this.add(DT.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "Occur Span End Date (33)"); this.add(ST.class, false, 1, 30, new Object[]{ getMessage(), new Integer(0) }, "UB 82 Locator 2"); this.add(ST.class, false, 1, 7, new Object[]{ getMessage(), new Integer(0) }, "UB 82 Locator 9"); this.add(ST.class, false, 1, 8, new Object[]{ getMessage(), new Integer(0) }, "UB 82 Locator 27"); this.add(ST.class, false, 1, 17, new Object[]{ getMessage(), new Integer(0) }, "UB 82 Locator 45"); } catch(HL7Exception e) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating UB1 - this is probably a bug in the source code generator.", e); } } /** * Returns * UB1-1: "Set ID - UB1" - creates it if necessary */ public SI getSetIDUB1() { 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 * UB1-1: "Set ID - UB1" - creates it if necessary */ public SI getUb11_SetIDUB1() { 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 * UB1-2: "Blood Deductible (43)" - creates it if necessary */ public NM getBloodDeductible() { NM ret = null; try { Type t = this.getField(2, 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 * UB1-2: "Blood Deductible (43)" - creates it if necessary */ public NM getUb12_BloodDeductible() { NM ret = null; try { Type t = this.getField(2, 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 * UB1-3: "Blood Furnished Pints Of (40)" - creates it if necessary */ public NM getBloodFurnishedPintsOf() { NM ret = null; try { Type t = this.getField(3, 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 * UB1-3: "Blood Furnished Pints Of (40)" - creates it if necessary */ public NM getUb13_BloodFurnishedPintsOf() { NM ret = null; try { Type t = this.getField(3, 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 * UB1-4: "Blood Replaced Pints (41)" - creates it if necessary */ public NM getBloodReplacedPints() { NM ret = null; try { Type t = this.getField(4, 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 * UB1-4: "Blood Replaced Pints (41)" - creates it if necessary */ public NM getUb14_BloodReplacedPints() { NM ret = null; try { Type t = this.getField(4, 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 * UB1-5: "Blood Not Replaced Pints(42)" - creates it if necessary */ public NM getBloodNotReplacedPints() { NM ret = null; try { Type t = this.getField(5, 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 * UB1-5: "Blood Not Replaced Pints(42)" - creates it if necessary */ public NM getUb15_BloodNotReplacedPints() { NM ret = null; try { Type t = this.getField(5, 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 * UB1-6: "Co Insurance Days (25)" - creates it if necessary */ public NM getCoInsuranceDays() { NM ret = null; try { Type t = this.getField(6, 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 * UB1-6: "Co Insurance Days (25)" - creates it if necessary */ public NM getUb16_CoInsuranceDays() { NM ret = null; try { Type t = this.getField(6, 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 Condition Code (35-39) (UB1-7). */ public IS[] getConditionCode3539() { IS[] ret = null; try { Type[] t = this.getField(7); ret = new IS[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (IS)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 Condition Code (35-39) (UB1-7). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getConditionCode3539Reps() { IS[] ret = null; try { Type[] t = this.getField(7); 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 * UB1-7: "Condition Code (35-39)" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public IS getConditionCode3539(int rep) { IS ret = null; try { Type t = this.getField(7, rep); 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 a specific repetition of * UB1-7: "Condition Code (35-39)" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public IS getUb17_ConditionCode3539(int rep) { IS ret = null; try { Type t = this.getField(7, rep); 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 a count of the current number of repetitions of Condition Code (35-39) (UB1-7). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getUb17_ConditionCode3539Reps() { IS[] ret = null; try { Type[] t = this.getField(7); 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 * UB1-7: "Condition Code (35-39)" 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 IS insertConditionCode3539(int rep) throws HL7Exception { return (IS) super.insertRepetition(7, rep); } /** * Inserts a repetition of * UB1-7: "Condition Code (35-39)" 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 IS insertUb17_ConditionCode3539(int rep) throws HL7Exception { return (IS) super.insertRepetition(7, rep); } /** * Removes a repetition of * UB1-7: "Condition Code (35-39)" 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 IS removeConditionCode3539(int rep) throws HL7Exception { return (IS) super.removeRepetition(7, rep); } /** * Removes a repetition of * UB1-7: "Condition Code (35-39)" 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 IS removeUb17_ConditionCode3539(int rep) throws HL7Exception { return (IS) super.removeRepetition(7, rep); } /** * Returns * UB1-8: "Covered Days (23)" - creates it if necessary */ public NM getCoveredDays() { NM ret = null; try { Type t = this.getField(8, 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 * UB1-8: "Covered Days (23)" - creates it if necessary */ public NM getUb18_CoveredDays() { NM ret = null; try { Type t = this.getField(8, 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 * UB1-9: "Non Covered Days (24)" - creates it if necessary */ public NM getNonCoveredDays() { NM ret = null; try { Type t = this.getField(9, 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 * UB1-9: "Non Covered Days (24)" - creates it if necessary */ public NM getUb19_NonCoveredDays() { NM ret = null; try { Type t = this.getField(9, 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 Value Amount & Code (46-49) (UB1-10). */ public CM_UVC[] getValueAmountCode4649() { CM_UVC[] ret = null; try { Type[] t = this.getField(10); ret = new CM_UVC[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (CM_UVC)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 Value Amount & Code (46-49) (UB1-10). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getValueAmountCode4649Reps() { CM_UVC[] ret = null; try { Type[] t = this.getField(10); 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 * UB1-10: "Value Amount & Code (46-49)" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CM_UVC getValueAmountCode4649(int rep) { CM_UVC ret = null; try { Type t = this.getField(10, rep); ret = (CM_UVC)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 * UB1-10: "Value Amount & Code (46-49)" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CM_UVC getUb110_ValueAmountCode4649(int rep) { CM_UVC ret = null; try { Type t = this.getField(10, rep); ret = (CM_UVC)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 Value Amount & Code (46-49) (UB1-10). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getUb110_ValueAmountCode4649Reps() { CM_UVC[] ret = null; try { Type[] t = this.getField(10); 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 * UB1-10: "Value Amount & Code (46-49)" 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 CM_UVC insertValueAmountCode4649(int rep) throws HL7Exception { return (CM_UVC) super.insertRepetition(10, rep); } /** * Inserts a repetition of * UB1-10: "Value Amount & Code (46-49)" 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 CM_UVC insertUb110_ValueAmountCode4649(int rep) throws HL7Exception { return (CM_UVC) super.insertRepetition(10, rep); } /** * Removes a repetition of * UB1-10: "Value Amount & Code (46-49)" 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 CM_UVC removeValueAmountCode4649(int rep) throws HL7Exception { return (CM_UVC) super.removeRepetition(10, rep); } /** * Removes a repetition of * UB1-10: "Value Amount & Code (46-49)" 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 CM_UVC removeUb110_ValueAmountCode4649(int rep) throws HL7Exception { return (CM_UVC) super.removeRepetition(10, rep); } /** * Returns * UB1-11: "Number Of Grace Days (90)" - creates it if necessary */ public NM getNumberOfGraceDays() { NM ret = null; try { Type t = this.getField(11, 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 * UB1-11: "Number Of Grace Days (90)" - creates it if necessary */ public NM getUb111_NumberOfGraceDays() { NM ret = null; try { Type t = this.getField(11, 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 * UB1-12: "Spec Program Indicator (44)" - creates it if necessary */ public CE getSpecProgramIndicator() { CE ret = null; try { Type t = this.getField(12, 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 * UB1-12: "Spec Program Indicator (44)" - creates it if necessary */ public CE getUb112_SpecProgramIndicator() { CE ret = null; try { Type t = this.getField(12, 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 * UB1-13: "PSRO/UR Approval Indicator (87)" - creates it if necessary */ public ID getPSROURApprovalIndicator() { ID ret = null; try { Type t = this.getField(13, 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 * UB1-13: "PSRO/UR Approval Indicator (87)" - creates it if necessary */ public ID getUb113_PSROURApprovalIndicator() { ID ret = null; try { Type t = this.getField(13, 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 * UB1-14: "PSRO/UR Approved Stay Fm (88)" - creates it if necessary */ public DT getPSROURApprovedStayFm() { DT ret = null; try { Type t = this.getField(14, 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 * UB1-14: "PSRO/UR Approved Stay Fm (88)" - creates it if necessary */ public DT getUb114_PSROURApprovedStayFm() { DT ret = null; try { Type t = this.getField(14, 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 * UB1-15: "PSRO/UR Approved Stay To (89)" - creates it if necessary */ public DT getPSROURApprovedStayTo() { DT ret = null; try { Type t = this.getField(15, 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 * UB1-15: "PSRO/UR Approved Stay To (89)" - creates it if necessary */ public DT getUb115_PSROURApprovedStayTo() { DT ret = null; try { Type t = this.getField(15, 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 all repetitions of Occurrence (28 32) (UB1-16). */ public CM_OCD[] getOccurrence2832() { CM_OCD[] ret = null; try { Type[] t = this.getField(16); ret = new CM_OCD[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (CM_OCD)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 Occurrence (28 32) (UB1-16). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getOccurrence2832Reps() { CM_OCD[] 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 * UB1-16: "Occurrence (28 32)" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CM_OCD getOccurrence2832(int rep) { CM_OCD ret = null; try { Type t = this.getField(16, rep); ret = (CM_OCD)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 * UB1-16: "Occurrence (28 32)" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CM_OCD getUb116_Occurrence2832(int rep) { CM_OCD ret = null; try { Type t = this.getField(16, rep); ret = (CM_OCD)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 Occurrence (28 32) (UB1-16). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getUb116_Occurrence2832Reps() { CM_OCD[] 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 * UB1-16: "Occurrence (28 32)" 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 CM_OCD insertOccurrence2832(int rep) throws HL7Exception { return (CM_OCD) super.insertRepetition(16, rep); } /** * Inserts a repetition of * UB1-16: "Occurrence (28 32)" 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 CM_OCD insertUb116_Occurrence2832(int rep) throws HL7Exception { return (CM_OCD) super.insertRepetition(16, rep); } /** * Removes a repetition of * UB1-16: "Occurrence (28 32)" 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 CM_OCD removeOccurrence2832(int rep) throws HL7Exception { return (CM_OCD) super.removeRepetition(16, rep); } /** * Removes a repetition of * UB1-16: "Occurrence (28 32)" 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 CM_OCD removeUb116_Occurrence2832(int rep) throws HL7Exception { return (CM_OCD) super.removeRepetition(16, rep); } /** * Returns * UB1-17: "Occurrence Span (33)" - creates it if necessary */ public ID getOccurrenceSpan() { ID ret = null; try { Type t = this.getField(17, 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 * UB1-17: "Occurrence Span (33)" - creates it if necessary */ public ID getUb117_OccurrenceSpan() { ID ret = null; try { Type t = this.getField(17, 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 * UB1-18: "Occur Span Start Date(33)" - creates it if necessary */ public DT getOccurSpanStartDate() { DT ret = null; try { Type t = this.getField(18, 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 * UB1-18: "Occur Span Start Date(33)" - creates it if necessary */ public DT getUb118_OccurSpanStartDate() { DT ret = null; try { Type t = this.getField(18, 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 * UB1-19: "Occur Span End Date (33)" - creates it if necessary */ public DT getOccurSpanEndDate() { DT ret = null; try { Type t = this.getField(19, 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 * UB1-19: "Occur Span End Date (33)" - creates it if necessary */ public DT getUb119_OccurSpanEndDate() { DT ret = null; try { Type t = this.getField(19, 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 * UB1-20: "UB 82 Locator 2" - creates it if necessary */ public ST getUB82Locator2() { ST ret = null; try { Type t = this.getField(20, 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 * UB1-20: "UB 82 Locator 2" - creates it if necessary */ public ST getUb120_UB82Locator2() { ST ret = null; try { Type t = this.getField(20, 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 * UB1-21: "UB 82 Locator 9" - creates it if necessary */ public ST getUB82Locator9() { ST ret = null; try { Type t = this.getField(21, 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 * UB1-21: "UB 82 Locator 9" - creates it if necessary */ public ST getUb121_UB82Locator9() { ST ret = null; try { Type t = this.getField(21, 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 * UB1-22: "UB 82 Locator 27" - creates it if necessary */ public ST getUB82Locator27() { ST ret = null; try { Type t = this.getField(22, 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 * UB1-22: "UB 82 Locator 27" - creates it if necessary */ public ST getUb122_UB82Locator27() { ST ret = null; try { Type t = this.getField(22, 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 * UB1-23: "UB 82 Locator 45" - creates it if necessary */ public ST getUB82Locator45() { ST ret = null; try { Type t = this.getField(23, 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 * UB1-23: "UB 82 Locator 45" - creates it if necessary */ public ST getUb123_UB82Locator45() { ST ret = null; try { Type t = this.getField(23, 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; } /** {@inheritDoc} */ protected Type createNewTypeWithoutReflection(int field) { switch (field) { case 0: return new SI(getMessage()); case 1: return new NM(getMessage()); case 2: return new NM(getMessage()); case 3: return new NM(getMessage()); case 4: return new NM(getMessage()); case 5: return new NM(getMessage()); case 6: return new IS(getMessage(), new Integer( 43 )); case 7: return new NM(getMessage()); case 8: return new NM(getMessage()); case 9: return new CM_UVC(getMessage()); case 10: return new NM(getMessage()); case 11: return new CE(getMessage()); case 12: return new ID(getMessage(), new Integer( 0 )); case 13: return new DT(getMessage()); case 14: return new DT(getMessage()); case 15: return new CM_OCD(getMessage()); case 16: return new ID(getMessage(), new Integer( 0 )); case 17: return new DT(getMessage()); case 18: return new DT(getMessage()); case 19: return new ST(getMessage()); case 20: return new ST(getMessage()); case 21: return new ST(getMessage()); case 22: return new ST(getMessage()); default: return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy