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

ca.uhn.hl7v2.model.v26.segment.OM3 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 OM3 message segment (Categorical Service/Test/Observation). * This segment has the following fields:

*
    *
  • OM3-1: Sequence Number - Test/Observation Master File (NM) optional *
  • OM3-2: Preferred Coding System (CWE) optional *
  • OM3-3: Valid Coded "Answers" (CWE) optional repeating *
  • OM3-4: Normal Text/Codes for Categorical Observations (CWE) optional repeating *
  • OM3-5: Abnormal Text/Codes for Categorical Observations (CWE) optional repeating *
  • OM3-6: Critical Text/Codes for Categorical Observations (CWE) optional repeating *
  • OM3-7: Value Type (ID) optional *
*/ public class OM3 extends AbstractSegment { /** * Creates a new OM3 segment */ public OM3(Group parent, ModelClassFactory factory) { super(parent, factory); init(factory); } private void init(ModelClassFactory factory) { try { this.add(NM.class, false, 1, 4, new Object[]{ getMessage(), new Integer(0) }, "Sequence Number - Test/Observation Master File"); this.add(CWE.class, false, 1, 250, new Object[]{ getMessage(), new Integer(9999) }, "Preferred Coding System"); this.add(CWE.class, false, 0, 250, new Object[]{ getMessage(), new Integer(9999) }, "Valid Coded \"Answers\""); this.add(CWE.class, false, 0, 250, new Object[]{ getMessage(), new Integer(9999) }, "Normal Text/Codes for Categorical Observations"); this.add(CWE.class, false, 0, 250, new Object[]{ getMessage(), new Integer(9999) }, "Abnormal Text/Codes for Categorical Observations"); this.add(CWE.class, false, 0, 250, new Object[]{ getMessage(), new Integer(9999) }, "Critical Text/Codes for Categorical Observations"); this.add(ID.class, false, 1, 3, new Object[]{ getMessage() }, "Value Type"); } catch(HL7Exception e) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating OM3 - this is probably a bug in the source code generator.", e); } } /** * Returns * OM3-1: "Sequence Number - Test/Observation Master File" - creates it if necessary */ public NM getSequenceNumberTestObservationMasterFile() { NM ret = null; try { Type t = this.getField(1, 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 * OM3-1: "Sequence Number - Test/Observation Master File" - creates it if necessary */ public NM getOm31_SequenceNumberTestObservationMasterFile() { NM ret = null; try { Type t = this.getField(1, 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 * OM3-2: "Preferred Coding System" - creates it if necessary */ public CWE getPreferredCodingSystem() { 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 * OM3-2: "Preferred Coding System" - creates it if necessary */ public CWE getOm32_PreferredCodingSystem() { 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 all repetitions of Valid Coded "Answers" (OM3-3). */ public CWE[] getValidCodedAnswers() { CWE[] ret = null; try { Type[] t = this.getField(3); ret = new CWE[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (CWE)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 Valid Coded "Answers" (OM3-3). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getValidCodedAnswersReps() { CWE[] 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 * OM3-3: "Valid Coded "Answers"" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getValidCodedAnswers(int rep) { CWE ret = null; try { Type t = this.getField(3, rep); 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 a specific repetition of * OM3-3: "Valid Coded "Answers"" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getOm33_ValidCodedAnswers(int rep) { CWE ret = null; try { Type t = this.getField(3, rep); 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 a count of the current number of repetitions of Valid Coded "Answers" (OM3-3). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getOm33_ValidCodedAnswersReps() { CWE[] 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 * OM3-3: "Valid Coded "Answers"" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertValidCodedAnswers(int rep) throws HL7Exception { return (CWE) super.insertRepetition(3, rep); } /** * Inserts a repetition of * OM3-3: "Valid Coded "Answers"" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertOm33_ValidCodedAnswers(int rep) throws HL7Exception { return (CWE) super.insertRepetition(3, rep); } /** * Removes a repetition of * OM3-3: "Valid Coded "Answers"" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeValidCodedAnswers(int rep) throws HL7Exception { return (CWE) super.removeRepetition(3, rep); } /** * Removes a repetition of * OM3-3: "Valid Coded "Answers"" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeOm33_ValidCodedAnswers(int rep) throws HL7Exception { return (CWE) super.removeRepetition(3, rep); } /** * Returns all repetitions of Normal Text/Codes for Categorical Observations (OM3-4). */ public CWE[] getNormalTextCodesForCategoricalObservations() { CWE[] ret = null; try { Type[] t = this.getField(4); ret = new CWE[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (CWE)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 Normal Text/Codes for Categorical Observations (OM3-4). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getNormalTextCodesForCategoricalObservationsReps() { CWE[] ret = null; try { Type[] t = this.getField(4); 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 * OM3-4: "Normal Text/Codes for Categorical Observations" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getNormalTextCodesForCategoricalObservations(int rep) { CWE ret = null; try { Type t = this.getField(4, rep); 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 a specific repetition of * OM3-4: "Normal Text/Codes for Categorical Observations" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getOm34_NormalTextCodesForCategoricalObservations(int rep) { CWE ret = null; try { Type t = this.getField(4, rep); 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 a count of the current number of repetitions of Normal Text/Codes for Categorical Observations (OM3-4). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getOm34_NormalTextCodesForCategoricalObservationsReps() { CWE[] ret = null; try { Type[] t = this.getField(4); 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 * OM3-4: "Normal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertNormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.insertRepetition(4, rep); } /** * Inserts a repetition of * OM3-4: "Normal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertOm34_NormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.insertRepetition(4, rep); } /** * Removes a repetition of * OM3-4: "Normal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeNormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.removeRepetition(4, rep); } /** * Removes a repetition of * OM3-4: "Normal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeOm34_NormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.removeRepetition(4, rep); } /** * Returns all repetitions of Abnormal Text/Codes for Categorical Observations (OM3-5). */ public CWE[] getAbnormalTextCodesForCategoricalObservations() { CWE[] ret = null; try { Type[] t = this.getField(5); ret = new CWE[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (CWE)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 Abnormal Text/Codes for Categorical Observations (OM3-5). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getAbnormalTextCodesForCategoricalObservationsReps() { CWE[] ret = null; try { Type[] t = this.getField(5); 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 * OM3-5: "Abnormal Text/Codes for Categorical Observations" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getAbnormalTextCodesForCategoricalObservations(int rep) { CWE ret = null; try { Type t = this.getField(5, rep); 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 a specific repetition of * OM3-5: "Abnormal Text/Codes for Categorical Observations" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getOm35_AbnormalTextCodesForCategoricalObservations(int rep) { CWE ret = null; try { Type t = this.getField(5, rep); 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 a count of the current number of repetitions of Abnormal Text/Codes for Categorical Observations (OM3-5). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getOm35_AbnormalTextCodesForCategoricalObservationsReps() { CWE[] ret = null; try { Type[] t = this.getField(5); 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 * OM3-5: "Abnormal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertAbnormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.insertRepetition(5, rep); } /** * Inserts a repetition of * OM3-5: "Abnormal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertOm35_AbnormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.insertRepetition(5, rep); } /** * Removes a repetition of * OM3-5: "Abnormal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeAbnormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.removeRepetition(5, rep); } /** * Removes a repetition of * OM3-5: "Abnormal Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeOm35_AbnormalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.removeRepetition(5, rep); } /** * Returns all repetitions of Critical Text/Codes for Categorical Observations (OM3-6). */ public CWE[] getCriticalTextCodesForCategoricalObservations() { CWE[] ret = null; try { Type[] t = this.getField(6); ret = new CWE[t.length]; for (int i = 0; i < ret.length; i++) { ret[i] = (CWE)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 Critical Text/Codes for Categorical Observations (OM3-6). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getCriticalTextCodesForCategoricalObservationsReps() { CWE[] ret = null; try { Type[] t = this.getField(6); 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 * OM3-6: "Critical Text/Codes for Categorical Observations" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getCriticalTextCodesForCategoricalObservations(int rep) { CWE ret = null; try { Type t = this.getField(6, rep); 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 a specific repetition of * OM3-6: "Critical Text/Codes for Categorical Observations" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CWE getOm36_CriticalTextCodesForCategoricalObservations(int rep) { CWE ret = null; try { Type t = this.getField(6, rep); 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 a count of the current number of repetitions of Critical Text/Codes for Categorical Observations (OM3-6). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getOm36_CriticalTextCodesForCategoricalObservationsReps() { CWE[] ret = null; try { Type[] t = this.getField(6); 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 * OM3-6: "Critical Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertCriticalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.insertRepetition(6, rep); } /** * Inserts a repetition of * OM3-6: "Critical Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE insertOm36_CriticalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.insertRepetition(6, rep); } /** * Removes a repetition of * OM3-6: "Critical Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeCriticalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.removeRepetition(6, rep); } /** * Removes a repetition of * OM3-6: "Critical Text/Codes for Categorical Observations" at a specific index * * @param rep The repetition index (0-indexed) * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) */ public CWE removeOm36_CriticalTextCodesForCategoricalObservations(int rep) throws HL7Exception { return (CWE) super.removeRepetition(6, rep); } /** * Returns * OM3-7: "Value Type" - creates it if necessary */ public ID getValueType() { ID ret = null; try { Type t = this.getField(7, 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 * OM3-7: "Value Type" - creates it if necessary */ public ID getOm37_ValueType() { ID ret = null; try { Type t = this.getField(7, 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 NM(getMessage()); case 1: return new CWE(getMessage()); case 2: return new CWE(getMessage()); case 3: return new CWE(getMessage()); case 4: return new CWE(getMessage()); case 5: return new CWE(getMessage()); case 6: return new ID(getMessage(), new Integer( 125 )); default: return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy