ca.uhn.hl7v2.model.v21.segment.URD Maven / Gradle / Ivy
/*
* 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.v21.segment;
// import ca.uhn.hl7v2.model.v21.group.*;
import ca.uhn.hl7v2.model.v21.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 URD message segment (RESULTS/UPDATE DEFINITION).
* This segment has the following fields:
*
* - URD-1: R/U DATE/TIME (TS) optional
*
- URD-2: REPORT PRIORITY (ID) optional
*
- URD-3: R/U WHO SUBJECT DEFINITION (ST) repeating
*
- URD-4: R/U WHAT SUBJECT DEFINITION (ID) optional repeating
*
- URD-5: R/U WHAT DEPARTMENT CODE (ST) optional repeating
*
- URD-6: R/U DISPLAY/PRINT LOCATIONS (ST) optional repeating
*
- URD-7: R/U RESULTS LEVEL (ID) optional
*
*/
public class URD extends AbstractSegment {
/**
* Creates a new URD segment
*/
public URD(Group parent, ModelClassFactory factory) {
super(parent, factory);
init(factory);
}
private void init(ModelClassFactory factory) {
try {
this.add(TS.class, false, 1, 19, new Object[]{ getMessage(), new Integer(0) }, "R/U DATE/TIME");
this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "REPORT PRIORITY");
this.add(ST.class, true, 0, 20, new Object[]{ getMessage(), new Integer(0) }, "R/U WHO SUBJECT DEFINITION");
this.add(ID.class, false, 0, 3, new Object[]{ getMessage() }, "R/U WHAT SUBJECT DEFINITION");
this.add(ST.class, false, 0, 20, new Object[]{ getMessage(), new Integer(0) }, "R/U WHAT DEPARTMENT CODE");
this.add(ST.class, false, 0, 20, new Object[]{ getMessage(), new Integer(0) }, "R/U DISPLAY/PRINT LOCATIONS");
this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "R/U RESULTS LEVEL");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating URD - this is probably a bug in the source code generator.", e);
}
}
/**
* Returns
* URD-1: "R/U DATE/TIME" - creates it if necessary
*/
public TS getRUDATETIME() {
TS ret = null;
try {
Type t = this.getField(1, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* URD-1: "R/U DATE/TIME" - creates it if necessary
*/
public TS getUrd1_RUDATETIME() {
TS ret = null;
try {
Type t = this.getField(1, 0);
ret = (TS)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* URD-2: "REPORT PRIORITY" - creates it if necessary
*/
public ID getREPORTPRIORITY() {
ID ret = null;
try {
Type t = this.getField(2, 0);
ret = (ID)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns
* URD-2: "REPORT PRIORITY" - creates it if necessary
*/
public ID getUrd2_REPORTPRIORITY() {
ID ret = null;
try {
Type t = this.getField(2, 0);
ret = (ID)t;
} catch (ClassCastException cce) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", cce);
throw new RuntimeException(cce);
} catch (HL7Exception he) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected problem obtaining field value. This is a bug.", he);
throw new RuntimeException(he);
}
return ret;
}
/**
* Returns all repetitions of R/U WHO SUBJECT DEFINITION (URD-3).
*/
public ST[] getRUWHOSUBJECTDEFINITION() {
ST[] ret = null;
try {
Type[] t = this.getField(3);
ret = new ST[t.length];
for (int i = 0; i < ret.length; i++) {
ret[i] = (ST)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 R/U WHO SUBJECT DEFINITION (URD-3).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getRUWHOSUBJECTDEFINITIONReps() {
ST[] 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
* URD-3: "R/U WHO SUBJECT DEFINITION" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ST getRUWHOSUBJECTDEFINITION(int rep) {
ST ret = null;
try {
Type t = this.getField(3, rep);
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 a specific repetition of
* URD-3: "R/U WHO SUBJECT DEFINITION" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ST getUrd3_RUWHOSUBJECTDEFINITION(int rep) {
ST ret = null;
try {
Type t = this.getField(3, rep);
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 a count of the current number of repetitions of R/U WHO SUBJECT DEFINITION (URD-3).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getUrd3_RUWHOSUBJECTDEFINITIONReps() {
ST[] 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
* URD-3: "R/U WHO SUBJECT DEFINITION" 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 ST insertRUWHOSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ST) super.insertRepetition(3, rep);
}
/**
* Inserts a repetition of
* URD-3: "R/U WHO SUBJECT DEFINITION" 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 ST insertUrd3_RUWHOSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ST) super.insertRepetition(3, rep);
}
/**
* Removes a repetition of
* URD-3: "R/U WHO SUBJECT DEFINITION" 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 ST removeRUWHOSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ST) super.removeRepetition(3, rep);
}
/**
* Removes a repetition of
* URD-3: "R/U WHO SUBJECT DEFINITION" 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 ST removeUrd3_RUWHOSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ST) super.removeRepetition(3, rep);
}
/**
* Returns all repetitions of R/U WHAT SUBJECT DEFINITION (URD-4).
*/
public ID[] getRUWHATSUBJECTDEFINITION() {
ID[] ret = null;
try {
Type[] t = this.getField(4);
ret = new ID[t.length];
for (int i = 0; i < ret.length; i++) {
ret[i] = (ID)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 R/U WHAT SUBJECT DEFINITION (URD-4).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getRUWHATSUBJECTDEFINITIONReps() {
ID[] 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
* URD-4: "R/U WHAT SUBJECT DEFINITION" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ID getRUWHATSUBJECTDEFINITION(int rep) {
ID ret = null;
try {
Type t = this.getField(4, rep);
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 a specific repetition of
* URD-4: "R/U WHAT SUBJECT DEFINITION" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ID getUrd4_RUWHATSUBJECTDEFINITION(int rep) {
ID ret = null;
try {
Type t = this.getField(4, rep);
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 a count of the current number of repetitions of R/U WHAT SUBJECT DEFINITION (URD-4).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getUrd4_RUWHATSUBJECTDEFINITIONReps() {
ID[] 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
* URD-4: "R/U WHAT SUBJECT DEFINITION" 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 ID insertRUWHATSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ID) super.insertRepetition(4, rep);
}
/**
* Inserts a repetition of
* URD-4: "R/U WHAT SUBJECT DEFINITION" 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 ID insertUrd4_RUWHATSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ID) super.insertRepetition(4, rep);
}
/**
* Removes a repetition of
* URD-4: "R/U WHAT SUBJECT DEFINITION" 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 ID removeRUWHATSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ID) super.removeRepetition(4, rep);
}
/**
* Removes a repetition of
* URD-4: "R/U WHAT SUBJECT DEFINITION" 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 ID removeUrd4_RUWHATSUBJECTDEFINITION(int rep) throws HL7Exception {
return (ID) super.removeRepetition(4, rep);
}
/**
* Returns all repetitions of R/U WHAT DEPARTMENT CODE (URD-5).
*/
public ST[] getRUWHATDEPARTMENTCODE() {
ST[] ret = null;
try {
Type[] t = this.getField(5);
ret = new ST[t.length];
for (int i = 0; i < ret.length; i++) {
ret[i] = (ST)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 R/U WHAT DEPARTMENT CODE (URD-5).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getRUWHATDEPARTMENTCODEReps() {
ST[] 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
* URD-5: "R/U WHAT DEPARTMENT CODE" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ST getRUWHATDEPARTMENTCODE(int rep) {
ST ret = null;
try {
Type t = this.getField(5, rep);
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 a specific repetition of
* URD-5: "R/U WHAT DEPARTMENT CODE" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ST getUrd5_RUWHATDEPARTMENTCODE(int rep) {
ST ret = null;
try {
Type t = this.getField(5, rep);
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 a count of the current number of repetitions of R/U WHAT DEPARTMENT CODE (URD-5).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getUrd5_RUWHATDEPARTMENTCODEReps() {
ST[] 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
* URD-5: "R/U WHAT DEPARTMENT CODE" 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 ST insertRUWHATDEPARTMENTCODE(int rep) throws HL7Exception {
return (ST) super.insertRepetition(5, rep);
}
/**
* Inserts a repetition of
* URD-5: "R/U WHAT DEPARTMENT CODE" 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 ST insertUrd5_RUWHATDEPARTMENTCODE(int rep) throws HL7Exception {
return (ST) super.insertRepetition(5, rep);
}
/**
* Removes a repetition of
* URD-5: "R/U WHAT DEPARTMENT CODE" 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 ST removeRUWHATDEPARTMENTCODE(int rep) throws HL7Exception {
return (ST) super.removeRepetition(5, rep);
}
/**
* Removes a repetition of
* URD-5: "R/U WHAT DEPARTMENT CODE" 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 ST removeUrd5_RUWHATDEPARTMENTCODE(int rep) throws HL7Exception {
return (ST) super.removeRepetition(5, rep);
}
/**
* Returns all repetitions of R/U DISPLAY/PRINT LOCATIONS (URD-6).
*/
public ST[] getRUDISPLAYPRINTLOCATIONS() {
ST[] ret = null;
try {
Type[] t = this.getField(6);
ret = new ST[t.length];
for (int i = 0; i < ret.length; i++) {
ret[i] = (ST)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 R/U DISPLAY/PRINT LOCATIONS (URD-6).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getRUDISPLAYPRINTLOCATIONSReps() {
ST[] 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
* URD-6: "R/U DISPLAY/PRINT LOCATIONS" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ST getRUDISPLAYPRINTLOCATIONS(int rep) {
ST ret = null;
try {
Type t = this.getField(6, rep);
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 a specific repetition of
* URD-6: "R/U DISPLAY/PRINT LOCATIONS" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public ST getUrd6_RUDISPLAYPRINTLOCATIONS(int rep) {
ST ret = null;
try {
Type t = this.getField(6, rep);
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 a count of the current number of repetitions of R/U DISPLAY/PRINT LOCATIONS (URD-6).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getUrd6_RUDISPLAYPRINTLOCATIONSReps() {
ST[] 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
* URD-6: "R/U DISPLAY/PRINT LOCATIONS" 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 ST insertRUDISPLAYPRINTLOCATIONS(int rep) throws HL7Exception {
return (ST) super.insertRepetition(6, rep);
}
/**
* Inserts a repetition of
* URD-6: "R/U DISPLAY/PRINT LOCATIONS" 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 ST insertUrd6_RUDISPLAYPRINTLOCATIONS(int rep) throws HL7Exception {
return (ST) super.insertRepetition(6, rep);
}
/**
* Removes a repetition of
* URD-6: "R/U DISPLAY/PRINT LOCATIONS" 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 ST removeRUDISPLAYPRINTLOCATIONS(int rep) throws HL7Exception {
return (ST) super.removeRepetition(6, rep);
}
/**
* Removes a repetition of
* URD-6: "R/U DISPLAY/PRINT LOCATIONS" 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 ST removeUrd6_RUDISPLAYPRINTLOCATIONS(int rep) throws HL7Exception {
return (ST) super.removeRepetition(6, rep);
}
/**
* Returns
* URD-7: "R/U RESULTS LEVEL" - creates it if necessary
*/
public ID getRURESULTSLEVEL() {
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
* URD-7: "R/U RESULTS LEVEL" - creates it if necessary
*/
public ID getUrd7_RURESULTSLEVEL() {
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 TS(getMessage());
case 1: return new ID(getMessage(), new Integer( 109 ));
case 2: return new ST(getMessage());
case 3: return new ID(getMessage(), new Integer( 48 ));
case 4: return new ST(getMessage());
case 5: return new ST(getMessage());
case 6: return new ID(getMessage(), new Integer( 108 ));
default: return null;
}
}
}