ca.uhn.hl7v2.model.v24.group.DFT_P11_FINANCIAL 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/
*
* The contents of this file are subject to the Mozilla Public License Version 1.1
* (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.mozilla.org/MPL/
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
* specific language governing rights and limitations under the License.
*
* The Original Code is "[file_name]". Description:
* "[one_line_description]"
*
* The Initial Developer of the Original Code is University Health Network. Copyright (C)
* 2002. All Rights Reserved.
*
* Contributor(s): ______________________________________.
*
* Alternatively, the contents of this file may be used under the terms of the
* GNU General Public License (the "GPL"), in which case the provisions of the GPL are
* applicable instead of those above. If you wish to allow use of your version of this
* file only under the terms of the GPL and not to allow others to use your version
* of this file under the MPL, indicate your decision by deleting the provisions above
* and replace them with the notice and other provisions required by the GPL License.
* If you do not delete the provisions above, a recipient may use your version of
* this file under either the MPL or the GPL.
*
*/
package ca.uhn.hl7v2.model.v24.group;
import ca.uhn.hl7v2.model.v24.segment.*;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
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 DFT_P11_FINANCIAL 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: FT1 (Financial Transaction)
* - 2: DFT_P11_FINANCIAL_PROCEDURE (a Group object) optional repeating
* - 3: DFT_P11_FINANCIAL_COMMON_ORDER (a Group object) optional repeating
* - 4: DG1 (Diagnosis) optional repeating
* - 5: DRG (Diagnosis Related Group) optional
* - 6: GT1 (Guarantor) optional repeating
* - 7: DFT_P11_FINANCIAL_INSURANCE (a Group object) optional repeating
*
*/
@SuppressWarnings("unused")
public class DFT_P11_FINANCIAL extends AbstractGroup {
/**
* Creates a new DFT_P11_FINANCIAL group
*/
public DFT_P11_FINANCIAL(Group parent, ModelClassFactory factory) {
super(parent, factory);
init(factory);
}
private void init(ModelClassFactory factory) {
try {
this.add(FT1.class, true, false);
this.add(DFT_P11_FINANCIAL_PROCEDURE.class, false, true);
this.add(DFT_P11_FINANCIAL_COMMON_ORDER.class, false, true);
this.add(DG1.class, false, true);
this.add(DRG.class, false, false);
this.add(GT1.class, false, true);
this.add(DFT_P11_FINANCIAL_INSURANCE.class, false, true);
} catch(HL7Exception e) {
LoggerFactory.getLogger(getClass()).error("Unexpected error creating DFT_P11_FINANCIAL - this is probably a bug in the source code generator.", e);
}
}
/**
* Returns "2.4"
*/
public String getVersion() {
return "2.4";
}
/**
* Returns
* FT1 (Financial Transaction) - creates it if necessary
*/
public FT1 getFT1() {
FT1 ret = null;
try {
ret = (FT1)this.get("FT1");
} catch(HL7Exception e) {
LoggerFactory.getLogger(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
* FINANCIAL_PROCEDURE (a Group object) - creates it if necessary
*/
public DFT_P11_FINANCIAL_PROCEDURE getFINANCIAL_PROCEDURE() {
DFT_P11_FINANCIAL_PROCEDURE ret = null;
try {
ret = (DFT_P11_FINANCIAL_PROCEDURE)this.get("FINANCIAL_PROCEDURE");
} catch(HL7Exception e) {
LoggerFactory.getLogger(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
* FINANCIAL_PROCEDURE (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 DFT_P11_FINANCIAL_PROCEDURE getFINANCIAL_PROCEDURE(int rep) {
DFT_P11_FINANCIAL_PROCEDURE ret = null;
try {
ret = (DFT_P11_FINANCIAL_PROCEDURE)this.get("FINANCIAL_PROCEDURE", rep);
} catch(HL7Exception e) {
LoggerFactory.getLogger(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 FINANCIAL_PROCEDURE
*/
public int getFINANCIAL_PROCEDUREReps() {
int reps = -1;
try {
reps = this.getAll("FINANCIAL_PROCEDURE").length;
} catch (HL7Exception e) {
String message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
LoggerFactory.getLogger(getClass()).error(message, e);
throw new RuntimeException(message);
}
return reps;
}
/**
*
* Returns a non-modifiable List containing all current existing repetitions of FINANCIAL_PROCEDURE.
*
*
* Note that unlike {@link #getFINANCIAL_PROCEDURE()}, this method will not create any reps
* if none are already present, so an empty list may be returned.
*
*/
public List getFINANCIAL_PROCEDUREAll() throws HL7Exception {
return this.getAllAsList("FINANCIAL_PROCEDURE", DFT_P11_FINANCIAL_PROCEDURE.class);
}
/**
* Inserts a specific repetition of FINANCIAL_PROCEDURE (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public void insertFINANCIAL_PROCEDURE(DFT_P11_FINANCIAL_PROCEDURE structure, int rep) throws HL7Exception {
super.insertRepetition("FINANCIAL_PROCEDURE", structure, rep);
}
/**
* Inserts a specific repetition of FINANCIAL_PROCEDURE (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public DFT_P11_FINANCIAL_PROCEDURE insertFINANCIAL_PROCEDURE(int rep) throws HL7Exception {
return (DFT_P11_FINANCIAL_PROCEDURE)super.insertRepetition("FINANCIAL_PROCEDURE", rep);
}
/**
* Removes a specific repetition of FINANCIAL_PROCEDURE (a Group object)
* @see AbstractGroup#removeRepetition(String, int)
*/
public DFT_P11_FINANCIAL_PROCEDURE removeFINANCIAL_PROCEDURE(int rep) throws HL7Exception {
return (DFT_P11_FINANCIAL_PROCEDURE)super.removeRepetition("FINANCIAL_PROCEDURE", rep);
}
/**
* Returns
* the first repetition of
* FINANCIAL_COMMON_ORDER (a Group object) - creates it if necessary
*/
public DFT_P11_FINANCIAL_COMMON_ORDER getFINANCIAL_COMMON_ORDER() {
DFT_P11_FINANCIAL_COMMON_ORDER ret = null;
try {
ret = (DFT_P11_FINANCIAL_COMMON_ORDER)this.get("FINANCIAL_COMMON_ORDER");
} catch(HL7Exception e) {
LoggerFactory.getLogger(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
* FINANCIAL_COMMON_ORDER (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 DFT_P11_FINANCIAL_COMMON_ORDER getFINANCIAL_COMMON_ORDER(int rep) {
DFT_P11_FINANCIAL_COMMON_ORDER ret = null;
try {
ret = (DFT_P11_FINANCIAL_COMMON_ORDER)this.get("FINANCIAL_COMMON_ORDER", rep);
} catch(HL7Exception e) {
LoggerFactory.getLogger(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 FINANCIAL_COMMON_ORDER
*/
public int getFINANCIAL_COMMON_ORDERReps() {
int reps = -1;
try {
reps = this.getAll("FINANCIAL_COMMON_ORDER").length;
} catch (HL7Exception e) {
String message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
LoggerFactory.getLogger(getClass()).error(message, e);
throw new RuntimeException(message);
}
return reps;
}
/**
*
* Returns a non-modifiable List containing all current existing repetitions of FINANCIAL_COMMON_ORDER.
*
*
* Note that unlike {@link #getFINANCIAL_COMMON_ORDER()}, this method will not create any reps
* if none are already present, so an empty list may be returned.
*
*/
public List getFINANCIAL_COMMON_ORDERAll() throws HL7Exception {
return this.getAllAsList("FINANCIAL_COMMON_ORDER", DFT_P11_FINANCIAL_COMMON_ORDER.class);
}
/**
* Inserts a specific repetition of FINANCIAL_COMMON_ORDER (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public void insertFINANCIAL_COMMON_ORDER(DFT_P11_FINANCIAL_COMMON_ORDER structure, int rep) throws HL7Exception {
super.insertRepetition("FINANCIAL_COMMON_ORDER", structure, rep);
}
/**
* Inserts a specific repetition of FINANCIAL_COMMON_ORDER (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public DFT_P11_FINANCIAL_COMMON_ORDER insertFINANCIAL_COMMON_ORDER(int rep) throws HL7Exception {
return (DFT_P11_FINANCIAL_COMMON_ORDER)super.insertRepetition("FINANCIAL_COMMON_ORDER", rep);
}
/**
* Removes a specific repetition of FINANCIAL_COMMON_ORDER (a Group object)
* @see AbstractGroup#removeRepetition(String, int)
*/
public DFT_P11_FINANCIAL_COMMON_ORDER removeFINANCIAL_COMMON_ORDER(int rep) throws HL7Exception {
return (DFT_P11_FINANCIAL_COMMON_ORDER)super.removeRepetition("FINANCIAL_COMMON_ORDER", rep);
}
/**
* Returns
* the first repetition of
* DG1 (Diagnosis) - creates it if necessary
*/
public DG1 getDG1() {
DG1 ret = null;
try {
ret = (DG1)this.get("DG1");
} catch(HL7Exception e) {
LoggerFactory.getLogger(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
* DG1 (Diagnosis) - 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 DG1 getDG1(int rep) {
DG1 ret = null;
try {
ret = (DG1)this.get("DG1", rep);
} catch(HL7Exception e) {
LoggerFactory.getLogger(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 DG1
*/
public int getDG1Reps() {
int reps = -1;
try {
reps = this.getAll("DG1").length;
} catch (HL7Exception e) {
String message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
LoggerFactory.getLogger(getClass()).error(message, e);
throw new RuntimeException(message);
}
return reps;
}
/**
*
* Returns a non-modifiable List containing all current existing repetitions of DG1.
*
*
* Note that unlike {@link #getDG1()}, this method will not create any reps
* if none are already present, so an empty list may be returned.
*
*/
public List getDG1All() throws HL7Exception {
return this.getAllAsList("DG1", DG1.class);
}
/**
* Inserts a specific repetition of DG1 (Diagnosis)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public void insertDG1(DG1 structure, int rep) throws HL7Exception {
super.insertRepetition("DG1", structure, rep);
}
/**
* Inserts a specific repetition of DG1 (Diagnosis)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public DG1 insertDG1(int rep) throws HL7Exception {
return (DG1)super.insertRepetition("DG1", rep);
}
/**
* Removes a specific repetition of DG1 (Diagnosis)
* @see AbstractGroup#removeRepetition(String, int)
*/
public DG1 removeDG1(int rep) throws HL7Exception {
return (DG1)super.removeRepetition("DG1", rep);
}
/**
* Returns
* DRG (Diagnosis Related Group) - creates it if necessary
*/
public DRG getDRG() {
DRG ret = null;
try {
ret = (DRG)this.get("DRG");
} catch(HL7Exception e) {
LoggerFactory.getLogger(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
* GT1 (Guarantor) - creates it if necessary
*/
public GT1 getGT1() {
GT1 ret = null;
try {
ret = (GT1)this.get("GT1");
} catch(HL7Exception e) {
LoggerFactory.getLogger(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
* GT1 (Guarantor) - 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 GT1 getGT1(int rep) {
GT1 ret = null;
try {
ret = (GT1)this.get("GT1", rep);
} catch(HL7Exception e) {
LoggerFactory.getLogger(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 GT1
*/
public int getGT1Reps() {
int reps = -1;
try {
reps = this.getAll("GT1").length;
} catch (HL7Exception e) {
String message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
LoggerFactory.getLogger(getClass()).error(message, e);
throw new RuntimeException(message);
}
return reps;
}
/**
*
* Returns a non-modifiable List containing all current existing repetitions of GT1.
*
*
* Note that unlike {@link #getGT1()}, this method will not create any reps
* if none are already present, so an empty list may be returned.
*
*/
public List getGT1All() throws HL7Exception {
return this.getAllAsList("GT1", GT1.class);
}
/**
* Inserts a specific repetition of GT1 (Guarantor)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public void insertGT1(GT1 structure, int rep) throws HL7Exception {
super.insertRepetition("GT1", structure, rep);
}
/**
* Inserts a specific repetition of GT1 (Guarantor)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public GT1 insertGT1(int rep) throws HL7Exception {
return (GT1)super.insertRepetition("GT1", rep);
}
/**
* Removes a specific repetition of GT1 (Guarantor)
* @see AbstractGroup#removeRepetition(String, int)
*/
public GT1 removeGT1(int rep) throws HL7Exception {
return (GT1)super.removeRepetition("GT1", rep);
}
/**
* Returns
* the first repetition of
* FINANCIAL_INSURANCE (a Group object) - creates it if necessary
*/
public DFT_P11_FINANCIAL_INSURANCE getFINANCIAL_INSURANCE() {
DFT_P11_FINANCIAL_INSURANCE ret = null;
try {
ret = (DFT_P11_FINANCIAL_INSURANCE)this.get("FINANCIAL_INSURANCE");
} catch(HL7Exception e) {
LoggerFactory.getLogger(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
* FINANCIAL_INSURANCE (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 DFT_P11_FINANCIAL_INSURANCE getFINANCIAL_INSURANCE(int rep) {
DFT_P11_FINANCIAL_INSURANCE ret = null;
try {
ret = (DFT_P11_FINANCIAL_INSURANCE)this.get("FINANCIAL_INSURANCE", rep);
} catch(HL7Exception e) {
LoggerFactory.getLogger(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 FINANCIAL_INSURANCE
*/
public int getFINANCIAL_INSURANCEReps() {
int reps = -1;
try {
reps = this.getAll("FINANCIAL_INSURANCE").length;
} catch (HL7Exception e) {
String message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
LoggerFactory.getLogger(getClass()).error(message, e);
throw new RuntimeException(message);
}
return reps;
}
/**
*
* Returns a non-modifiable List containing all current existing repetitions of FINANCIAL_INSURANCE.
*
*
* Note that unlike {@link #getFINANCIAL_INSURANCE()}, this method will not create any reps
* if none are already present, so an empty list may be returned.
*
*/
public List getFINANCIAL_INSURANCEAll() throws HL7Exception {
return this.getAllAsList("FINANCIAL_INSURANCE", DFT_P11_FINANCIAL_INSURANCE.class);
}
/**
* Inserts a specific repetition of FINANCIAL_INSURANCE (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public void insertFINANCIAL_INSURANCE(DFT_P11_FINANCIAL_INSURANCE structure, int rep) throws HL7Exception {
super.insertRepetition("FINANCIAL_INSURANCE", structure, rep);
}
/**
* Inserts a specific repetition of FINANCIAL_INSURANCE (a Group object)
* @see AbstractGroup#insertRepetition(Structure, int)
*/
public DFT_P11_FINANCIAL_INSURANCE insertFINANCIAL_INSURANCE(int rep) throws HL7Exception {
return (DFT_P11_FINANCIAL_INSURANCE)super.insertRepetition("FINANCIAL_INSURANCE", rep);
}
/**
* Removes a specific repetition of FINANCIAL_INSURANCE (a Group object)
* @see AbstractGroup#removeRepetition(String, int)
*/
public DFT_P11_FINANCIAL_INSURANCE removeFINANCIAL_INSURANCE(int rep) throws HL7Exception {
return (DFT_P11_FINANCIAL_INSURANCE)super.removeRepetition("FINANCIAL_INSURANCE", rep);
}
}