ca.uhn.hl7v2.model.v26.segment.RFI 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.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 RFI message segment (Request for Information).
* This segment has the following fields:
*
* - RFI-1: Request Date (DTM)
*
- RFI-2: Response Due Date (DTM)
*
- RFI-3: Patient Consent (ID) optional
*
- RFI-4: Date Additional Information was submitted (DTM) optional
*
*/
public class RFI extends AbstractSegment {
/**
* Creates a new RFI segment
*/
public RFI(Group parent, ModelClassFactory factory) {
super(parent, factory);
init(factory);
}
private void init(ModelClassFactory factory) {
try {
this.add(DTM.class, true, 1, 24, new Object[]{ getMessage(), new Integer(0) }, "Request Date");
this.add(DTM.class, true, 1, 24, new Object[]{ getMessage(), new Integer(0) }, "Response Due Date");
this.add(ID.class, false, 1, 1, new Object[]{ getMessage() }, "Patient Consent");
this.add(DTM.class, false, 1, 24, new Object[]{ getMessage(), new Integer(0) }, "Date Additional Information was submitted");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating RFI - this is probably a bug in the source code generator.", e);
}
}
/**
* Returns
* RFI-1: "Request Date" - creates it if necessary
*/
public DTM getRequestDate() {
DTM ret = null;
try {
Type t = this.getField(1, 0);
ret = (DTM)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
* RFI-1: "Request Date" - creates it if necessary
*/
public DTM getRfi1_RequestDate() {
DTM ret = null;
try {
Type t = this.getField(1, 0);
ret = (DTM)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
* RFI-2: "Response Due Date" - creates it if necessary
*/
public DTM getResponseDueDate() {
DTM ret = null;
try {
Type t = this.getField(2, 0);
ret = (DTM)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
* RFI-2: "Response Due Date" - creates it if necessary
*/
public DTM getRfi2_ResponseDueDate() {
DTM ret = null;
try {
Type t = this.getField(2, 0);
ret = (DTM)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
* RFI-3: "Patient Consent" - creates it if necessary
*/
public ID getPatientConsent() {
ID ret = null;
try {
Type t = this.getField(3, 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
* RFI-3: "Patient Consent" - creates it if necessary
*/
public ID getRfi3_PatientConsent() {
ID ret = null;
try {
Type t = this.getField(3, 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
* RFI-4: "Date Additional Information was submitted" - creates it if necessary
*/
public DTM getDateAdditionalInformationWasSubmitted() {
DTM ret = null;
try {
Type t = this.getField(4, 0);
ret = (DTM)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
* RFI-4: "Date Additional Information was submitted" - creates it if necessary
*/
public DTM getRfi4_DateAdditionalInformationWasSubmitted() {
DTM ret = null;
try {
Type t = this.getField(4, 0);
ret = (DTM)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 DTM(getMessage());
case 1: return new DTM(getMessage());
case 2: return new ID(getMessage(), new Integer( 136 ));
case 3: return new DTM(getMessage());
default: return null;
}
}
}