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

ca.uhn.hl7v2.model.v25.group.SQR_S25_RESOURCES Maven / Gradle / Ivy

There is a newer version: 2.5.1
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.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 SQR_S25_RESOURCES 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: RGS (Resource Group)
  • *
  • 2: SQR_S25_SERVICE (a Group object) optional repeating
  • *
  • 3: SQR_S25_GENERAL_RESOURCE (a Group object) optional repeating
  • *
  • 4: SQR_S25_PERSONNEL_RESOURCE (a Group object) optional repeating
  • *
  • 5: SQR_S25_LOCATION_RESOURCE (a Group object) optional repeating
  • *
*/ public class SQR_S25_RESOURCES extends AbstractGroup { /** * Creates a new SQR_S25_RESOURCES group */ public SQR_S25_RESOURCES(Group parent, ModelClassFactory factory) { super(parent, factory); init(factory); } private void init(ModelClassFactory factory) { try { this.add(RGS.class, true, false); this.add(SQR_S25_SERVICE.class, false, true); this.add(SQR_S25_GENERAL_RESOURCE.class, false, true); this.add(SQR_S25_PERSONNEL_RESOURCE.class, false, true); this.add(SQR_S25_LOCATION_RESOURCE.class, false, true); } catch(HL7Exception e) { HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating SQR_S25_RESOURCES - this is probably a bug in the source code generator.", e); } } /** * Returns "2.5" */ public String getVersion() { return "2.5"; } /** * Returns * RGS (Resource Group) - creates it if necessary */ public RGS getRGS() { RGS ret = null; try { ret = (RGS)this.get("RGS"); } 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 * SERVICE (a Group object) - creates it if necessary */ public SQR_S25_SERVICE getSERVICE() { SQR_S25_SERVICE ret = null; try { ret = (SQR_S25_SERVICE)this.get("SERVICE"); } 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 * SERVICE (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 SQR_S25_SERVICE getSERVICE(int rep) { SQR_S25_SERVICE ret = null; try { ret = (SQR_S25_SERVICE)this.get("SERVICE", 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 SERVICE */ public int getSERVICEReps() { int reps = -1; try { reps = this.getAll("SERVICE").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 SERVICE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public void insertSERVICE(SQR_S25_SERVICE structure, int rep) throws HL7Exception { super.insertRepetition("SERVICE", structure, rep); } /** * Inserts a specific repetition of SERVICE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public SQR_S25_SERVICE insertSERVICE(int rep) throws HL7Exception { return (SQR_S25_SERVICE)super.insertRepetition("SERVICE", rep); } /** * Removes a specific repetition of SERVICE (a Group object) * @see AbstractGroup#removeRepetition(String, int) */ public SQR_S25_SERVICE removeSERVICE(int rep) throws HL7Exception { return (SQR_S25_SERVICE)super.removeRepetition("SERVICE", rep); } /** * Returns * the first repetition of * GENERAL_RESOURCE (a Group object) - creates it if necessary */ public SQR_S25_GENERAL_RESOURCE getGENERAL_RESOURCE() { SQR_S25_GENERAL_RESOURCE ret = null; try { ret = (SQR_S25_GENERAL_RESOURCE)this.get("GENERAL_RESOURCE"); } 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 * GENERAL_RESOURCE (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 SQR_S25_GENERAL_RESOURCE getGENERAL_RESOURCE(int rep) { SQR_S25_GENERAL_RESOURCE ret = null; try { ret = (SQR_S25_GENERAL_RESOURCE)this.get("GENERAL_RESOURCE", 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 GENERAL_RESOURCE */ public int getGENERAL_RESOURCEReps() { int reps = -1; try { reps = this.getAll("GENERAL_RESOURCE").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 GENERAL_RESOURCE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public void insertGENERAL_RESOURCE(SQR_S25_GENERAL_RESOURCE structure, int rep) throws HL7Exception { super.insertRepetition("GENERAL_RESOURCE", structure, rep); } /** * Inserts a specific repetition of GENERAL_RESOURCE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public SQR_S25_GENERAL_RESOURCE insertGENERAL_RESOURCE(int rep) throws HL7Exception { return (SQR_S25_GENERAL_RESOURCE)super.insertRepetition("GENERAL_RESOURCE", rep); } /** * Removes a specific repetition of GENERAL_RESOURCE (a Group object) * @see AbstractGroup#removeRepetition(String, int) */ public SQR_S25_GENERAL_RESOURCE removeGENERAL_RESOURCE(int rep) throws HL7Exception { return (SQR_S25_GENERAL_RESOURCE)super.removeRepetition("GENERAL_RESOURCE", rep); } /** * Returns * the first repetition of * PERSONNEL_RESOURCE (a Group object) - creates it if necessary */ public SQR_S25_PERSONNEL_RESOURCE getPERSONNEL_RESOURCE() { SQR_S25_PERSONNEL_RESOURCE ret = null; try { ret = (SQR_S25_PERSONNEL_RESOURCE)this.get("PERSONNEL_RESOURCE"); } 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 * PERSONNEL_RESOURCE (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 SQR_S25_PERSONNEL_RESOURCE getPERSONNEL_RESOURCE(int rep) { SQR_S25_PERSONNEL_RESOURCE ret = null; try { ret = (SQR_S25_PERSONNEL_RESOURCE)this.get("PERSONNEL_RESOURCE", 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 PERSONNEL_RESOURCE */ public int getPERSONNEL_RESOURCEReps() { int reps = -1; try { reps = this.getAll("PERSONNEL_RESOURCE").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 PERSONNEL_RESOURCE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public void insertPERSONNEL_RESOURCE(SQR_S25_PERSONNEL_RESOURCE structure, int rep) throws HL7Exception { super.insertRepetition("PERSONNEL_RESOURCE", structure, rep); } /** * Inserts a specific repetition of PERSONNEL_RESOURCE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public SQR_S25_PERSONNEL_RESOURCE insertPERSONNEL_RESOURCE(int rep) throws HL7Exception { return (SQR_S25_PERSONNEL_RESOURCE)super.insertRepetition("PERSONNEL_RESOURCE", rep); } /** * Removes a specific repetition of PERSONNEL_RESOURCE (a Group object) * @see AbstractGroup#removeRepetition(String, int) */ public SQR_S25_PERSONNEL_RESOURCE removePERSONNEL_RESOURCE(int rep) throws HL7Exception { return (SQR_S25_PERSONNEL_RESOURCE)super.removeRepetition("PERSONNEL_RESOURCE", rep); } /** * Returns * the first repetition of * LOCATION_RESOURCE (a Group object) - creates it if necessary */ public SQR_S25_LOCATION_RESOURCE getLOCATION_RESOURCE() { SQR_S25_LOCATION_RESOURCE ret = null; try { ret = (SQR_S25_LOCATION_RESOURCE)this.get("LOCATION_RESOURCE"); } 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 * LOCATION_RESOURCE (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 SQR_S25_LOCATION_RESOURCE getLOCATION_RESOURCE(int rep) { SQR_S25_LOCATION_RESOURCE ret = null; try { ret = (SQR_S25_LOCATION_RESOURCE)this.get("LOCATION_RESOURCE", 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 LOCATION_RESOURCE */ public int getLOCATION_RESOURCEReps() { int reps = -1; try { reps = this.getAll("LOCATION_RESOURCE").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 LOCATION_RESOURCE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public void insertLOCATION_RESOURCE(SQR_S25_LOCATION_RESOURCE structure, int rep) throws HL7Exception { super.insertRepetition("LOCATION_RESOURCE", structure, rep); } /** * Inserts a specific repetition of LOCATION_RESOURCE (a Group object) * @see AbstractGroup#insertRepetition(Structure, int) */ public SQR_S25_LOCATION_RESOURCE insertLOCATION_RESOURCE(int rep) throws HL7Exception { return (SQR_S25_LOCATION_RESOURCE)super.insertRepetition("LOCATION_RESOURCE", rep); } /** * Removes a specific repetition of LOCATION_RESOURCE (a Group object) * @see AbstractGroup#removeRepetition(String, int) */ public SQR_S25_LOCATION_RESOURCE removeLOCATION_RESOURCE(int rep) throws HL7Exception { return (SQR_S25_LOCATION_RESOURCE)super.removeRepetition("LOCATION_RESOURCE", rep); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy