ca.uhn.hl7v2.model.v25.group.SUR_P09_FACILITY 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.v25.group;
import ca.uhn.hl7v2.model.v25.segment.*;
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.AbstractGroup;
import ca.uhn.hl7v2.model.GenericSegment;
/**
* Represents a SUR_P09_FACILITY group structure (a Group object).
* A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
* This Group contains the following elements:
*
*
* - 1: FAC (Facility)
* - 2: SUR_P09_PRODUCT (a Group object) repeating
* - 3: PSH (Product Summary Header)
* - 4: SUR_P09_FACILITY_DETAIL (a Group object) repeating
*
*/
public class SUR_P09_FACILITY extends AbstractGroup {
/**
* Creates a new SUR_P09_FACILITY group
*/
public SUR_P09_FACILITY(Group parent, ModelClassFactory factory) {
super(parent, factory);
init(factory);
}
private void init(ModelClassFactory factory) {
try {
this.add(FAC.class, true, false);
this.add(SUR_P09_PRODUCT.class, true, true);
this.add(PSH.class, true, false);
this.add(SUR_P09_FACILITY_DETAIL.class, true, true);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating SUR_P09_FACILITY - this is probably a bug in the source code generator.", e);
}
}
/**
* Returns "2.5"
*/
public String getVersion() {
return "2.5";
}
/**
* Returns
* FAC (Facility) - creates it if necessary
*/
public FAC getFAC() {
FAC ret = null;
try {
ret = (FAC)this.get("FAC");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new RuntimeException(e);
}
return ret;
}
/**
* Returns
* the first repetition of
* PRODUCT (a Group object) - creates it if necessary
*/
public SUR_P09_PRODUCT getPRODUCT() {
SUR_P09_PRODUCT ret = null;
try {
ret = (SUR_P09_PRODUCT)this.get("PRODUCT");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new RuntimeException(e);
}
return ret;
}
/**
* Returns a specific repetition of
* PRODUCT (a Group object) - creates it if necessary
*
* @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
* @throws HL7Exception if the repetition requested is more than one
* greater than the number of existing repetitions.
*/
public SUR_P09_PRODUCT getPRODUCT(int rep) {
SUR_P09_PRODUCT ret = null;
try {
ret = (SUR_P09_PRODUCT)this.get("PRODUCT", rep);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new RuntimeException(e);
}
return ret;
}
/**
* Returns the number of existing repetitions of PRODUCT
*/
public int getPRODUCTReps() {
int reps = -1;
try {
reps = this.getAll("PRODUCT").length;
} catch (HL7Exception e) {
String message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(this.getClass()).error(message, e);
throw new RuntimeException(message);
}
return reps;
}
/**
* Inserts a specific repetition of PRODUCT (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public void insertPRODUCT(SUR_P09_PRODUCT structure, int rep) throws HL7Exception {
super.insertRepetition("PRODUCT", structure, rep);
}
/**
* Inserts a specific repetition of PRODUCT (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public SUR_P09_PRODUCT insertPRODUCT(int rep) throws HL7Exception {
return (SUR_P09_PRODUCT)super.insertRepetition("PRODUCT", rep);
}
/**
* Removes a specific repetition of PRODUCT (a Group object)
* @see AbstractGroup#removeRepetition(String, int)
*/
public SUR_P09_PRODUCT removePRODUCT(int rep) throws HL7Exception {
return (SUR_P09_PRODUCT)super.removeRepetition("PRODUCT", rep);
}
/**
* Returns
* PSH (Product Summary Header) - creates it if necessary
*/
public PSH getPSH() {
PSH ret = null;
try {
ret = (PSH)this.get("PSH");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new RuntimeException(e);
}
return ret;
}
/**
* Returns
* the first repetition of
* FACILITY_DETAIL (a Group object) - creates it if necessary
*/
public SUR_P09_FACILITY_DETAIL getFACILITY_DETAIL() {
SUR_P09_FACILITY_DETAIL ret = null;
try {
ret = (SUR_P09_FACILITY_DETAIL)this.get("FACILITY_DETAIL");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new RuntimeException(e);
}
return ret;
}
/**
* Returns a specific repetition of
* FACILITY_DETAIL (a Group object) - creates it if necessary
*
* @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
* @throws HL7Exception if the repetition requested is more than one
* greater than the number of existing repetitions.
*/
public SUR_P09_FACILITY_DETAIL getFACILITY_DETAIL(int rep) {
SUR_P09_FACILITY_DETAIL ret = null;
try {
ret = (SUR_P09_FACILITY_DETAIL)this.get("FACILITY_DETAIL", rep);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new RuntimeException(e);
}
return ret;
}
/**
* Returns the number of existing repetitions of FACILITY_DETAIL
*/
public int getFACILITY_DETAILReps() {
int reps = -1;
try {
reps = this.getAll("FACILITY_DETAIL").length;
} catch (HL7Exception e) {
String message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(this.getClass()).error(message, e);
throw new RuntimeException(message);
}
return reps;
}
/**
* Inserts a specific repetition of FACILITY_DETAIL (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public void insertFACILITY_DETAIL(SUR_P09_FACILITY_DETAIL structure, int rep) throws HL7Exception {
super.insertRepetition("FACILITY_DETAIL", structure, rep);
}
/**
* Inserts a specific repetition of FACILITY_DETAIL (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public SUR_P09_FACILITY_DETAIL insertFACILITY_DETAIL(int rep) throws HL7Exception {
return (SUR_P09_FACILITY_DETAIL)super.insertRepetition("FACILITY_DETAIL", rep);
}
/**
* Removes a specific repetition of FACILITY_DETAIL (a Group object)
* @see AbstractGroup#removeRepetition(String, int)
*/
public SUR_P09_FACILITY_DETAIL removeFACILITY_DETAIL(int rep) throws HL7Exception {
return (SUR_P09_FACILITY_DETAIL)super.removeRepetition("FACILITY_DETAIL", rep);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy