ca.uhn.hl7v2.model.v251.segment.LDP 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)
* 2012. 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.v251.segment;
// import ca.uhn.hl7v2.model.v251.group.*;
import ca.uhn.hl7v2.model.v251.datatype.*;
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 LDP message segment (Location Department).
* This segment has the following fields:
*
* - LDP-1: Primary Key Value - LDP (PL)
*
- LDP-2: Location Department (CE)
*
- LDP-3: Location Service (IS) optional repeating
*
- LDP-4: Specialty Type (CE) optional repeating
*
- LDP-5: Valid Patient Classes (IS) optional repeating
*
- LDP-6: Active/Inactive Flag (ID) optional
*
- LDP-7: Activation Date LDP (TS) optional
*
- LDP-8: Inactivation Date - LDP (TS) optional
*
- LDP-9: Inactivated Reason (ST) optional
*
- LDP-10: Visiting Hours (VH) optional repeating
*
- LDP-11: Contact Phone (XTN) optional
*
- LDP-12: Location Cost Center (CE) optional
*
*/
@SuppressWarnings("unused")
public class LDP extends AbstractSegment {
/**
* Creates a new LDP segment
*/
public LDP(Group parent, ModelClassFactory factory) {
super(parent, factory);
init(factory);
}
private void init(ModelClassFactory factory) {
try {
this.add(PL.class, true, 1, 200, new Object[]{ getMessage() }, "Primary Key Value - LDP");
this.add(CE.class, true, 1, 250, new Object[]{ getMessage() }, "Location Department");
this.add(IS.class, false, 0, 3, new Object[]{ getMessage(), new Integer(69) }, "Location Service");
this.add(CE.class, false, 0, 250, new Object[]{ getMessage() }, "Specialty Type");
this.add(IS.class, false, 0, 1, new Object[]{ getMessage(), new Integer(4) }, "Valid Patient Classes");
this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), new Integer(183) }, "Active/Inactive Flag");
this.add(TS.class, false, 1, 26, new Object[]{ getMessage() }, "Activation Date LDP");
this.add(TS.class, false, 1, 26, new Object[]{ getMessage() }, "Inactivation Date - LDP");
this.add(ST.class, false, 1, 80, new Object[]{ getMessage() }, "Inactivated Reason");
this.add(VH.class, false, 0, 80, new Object[]{ getMessage() }, "Visiting Hours");
this.add(XTN.class, false, 1, 250, new Object[]{ getMessage() }, "Contact Phone");
this.add(CE.class, false, 1, 250, new Object[]{ getMessage() }, "Location Cost Center");
} catch(HL7Exception e) {
log.error("Unexpected error creating LDP - this is probably a bug in the source code generator.", e);
}
}
/**
* Returns
* LDP-1: "Primary Key Value - LDP" - creates it if necessary
*/
public PL getPrimaryKeyValueLDP() {
PL retVal = this.getTypedField(1, 0);
return retVal;
}
/**
* Returns
* LDP-1: "Primary Key Value - LDP" - creates it if necessary
*/
public PL getLdp1_PrimaryKeyValueLDP() {
PL retVal = this.getTypedField(1, 0);
return retVal;
}
/**
* Returns
* LDP-2: "Location Department" - creates it if necessary
*/
public CE getLocationDepartment() {
CE retVal = this.getTypedField(2, 0);
return retVal;
}
/**
* Returns
* LDP-2: "Location Department" - creates it if necessary
*/
public CE getLdp2_LocationDepartment() {
CE retVal = this.getTypedField(2, 0);
return retVal;
}
/**
* Returns all repetitions of Location Service (LDP-3).
*/
public IS[] getLocationService() {
IS[] retVal = this.getTypedField(3, new IS[0]);
return retVal;
}
/**
* Returns all repetitions of Location Service (LDP-3).
*/
public IS[] getLdp3_LocationService() {
IS[] retVal = this.getTypedField(3, new IS[0]);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Location Service (LDP-3).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getLocationServiceReps() {
return this.getReps(3);
}
/**
* Returns a specific repetition of
* LDP-3: "Location Service" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public IS getLocationService(int rep) {
IS retVal = this.getTypedField(3, rep);
return retVal;
}
/**
* Returns a specific repetition of
* LDP-3: "Location Service" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public IS getLdp3_LocationService(int rep) {
IS retVal = this.getTypedField(3, rep);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Location Service (LDP-3).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getLdp3_LocationServiceReps() {
return this.getReps(3);
}
/**
* Inserts a repetition of
* LDP-3: "Location Service" 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 IS insertLocationService(int rep) throws HL7Exception {
return (IS) super.insertRepetition(3, rep);
}
/**
* Inserts a repetition of
* LDP-3: "Location Service" 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 IS insertLdp3_LocationService(int rep) throws HL7Exception {
return (IS) super.insertRepetition(3, rep);
}
/**
* Removes a repetition of
* LDP-3: "Location Service" 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 IS removeLocationService(int rep) throws HL7Exception {
return (IS) super.removeRepetition(3, rep);
}
/**
* Removes a repetition of
* LDP-3: "Location Service" 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 IS removeLdp3_LocationService(int rep) throws HL7Exception {
return (IS) super.removeRepetition(3, rep);
}
/**
* Returns all repetitions of Specialty Type (LDP-4).
*/
public CE[] getSpecialtyType() {
CE[] retVal = this.getTypedField(4, new CE[0]);
return retVal;
}
/**
* Returns all repetitions of Specialty Type (LDP-4).
*/
public CE[] getLdp4_SpecialtyType() {
CE[] retVal = this.getTypedField(4, new CE[0]);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Specialty Type (LDP-4).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getSpecialtyTypeReps() {
return this.getReps(4);
}
/**
* Returns a specific repetition of
* LDP-4: "Specialty Type" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public CE getSpecialtyType(int rep) {
CE retVal = this.getTypedField(4, rep);
return retVal;
}
/**
* Returns a specific repetition of
* LDP-4: "Specialty Type" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public CE getLdp4_SpecialtyType(int rep) {
CE retVal = this.getTypedField(4, rep);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Specialty Type (LDP-4).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getLdp4_SpecialtyTypeReps() {
return this.getReps(4);
}
/**
* Inserts a repetition of
* LDP-4: "Specialty Type" 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 CE insertSpecialtyType(int rep) throws HL7Exception {
return (CE) super.insertRepetition(4, rep);
}
/**
* Inserts a repetition of
* LDP-4: "Specialty Type" 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 CE insertLdp4_SpecialtyType(int rep) throws HL7Exception {
return (CE) super.insertRepetition(4, rep);
}
/**
* Removes a repetition of
* LDP-4: "Specialty Type" 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 CE removeSpecialtyType(int rep) throws HL7Exception {
return (CE) super.removeRepetition(4, rep);
}
/**
* Removes a repetition of
* LDP-4: "Specialty Type" 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 CE removeLdp4_SpecialtyType(int rep) throws HL7Exception {
return (CE) super.removeRepetition(4, rep);
}
/**
* Returns all repetitions of Valid Patient Classes (LDP-5).
*/
public IS[] getValidPatientClasses() {
IS[] retVal = this.getTypedField(5, new IS[0]);
return retVal;
}
/**
* Returns all repetitions of Valid Patient Classes (LDP-5).
*/
public IS[] getLdp5_ValidPatientClasses() {
IS[] retVal = this.getTypedField(5, new IS[0]);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Valid Patient Classes (LDP-5).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getValidPatientClassesReps() {
return this.getReps(5);
}
/**
* Returns a specific repetition of
* LDP-5: "Valid Patient Classes" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public IS getValidPatientClasses(int rep) {
IS retVal = this.getTypedField(5, rep);
return retVal;
}
/**
* Returns a specific repetition of
* LDP-5: "Valid Patient Classes" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public IS getLdp5_ValidPatientClasses(int rep) {
IS retVal = this.getTypedField(5, rep);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Valid Patient Classes (LDP-5).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getLdp5_ValidPatientClassesReps() {
return this.getReps(5);
}
/**
* Inserts a repetition of
* LDP-5: "Valid Patient Classes" 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 IS insertValidPatientClasses(int rep) throws HL7Exception {
return (IS) super.insertRepetition(5, rep);
}
/**
* Inserts a repetition of
* LDP-5: "Valid Patient Classes" 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 IS insertLdp5_ValidPatientClasses(int rep) throws HL7Exception {
return (IS) super.insertRepetition(5, rep);
}
/**
* Removes a repetition of
* LDP-5: "Valid Patient Classes" 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 IS removeValidPatientClasses(int rep) throws HL7Exception {
return (IS) super.removeRepetition(5, rep);
}
/**
* Removes a repetition of
* LDP-5: "Valid Patient Classes" 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 IS removeLdp5_ValidPatientClasses(int rep) throws HL7Exception {
return (IS) super.removeRepetition(5, rep);
}
/**
* Returns
* LDP-6: "Active/Inactive Flag" - creates it if necessary
*/
public ID getActiveInactiveFlag() {
ID retVal = this.getTypedField(6, 0);
return retVal;
}
/**
* Returns
* LDP-6: "Active/Inactive Flag" - creates it if necessary
*/
public ID getLdp6_ActiveInactiveFlag() {
ID retVal = this.getTypedField(6, 0);
return retVal;
}
/**
* Returns
* LDP-7: "Activation Date LDP" - creates it if necessary
*/
public TS getActivationDateLDP() {
TS retVal = this.getTypedField(7, 0);
return retVal;
}
/**
* Returns
* LDP-7: "Activation Date LDP" - creates it if necessary
*/
public TS getLdp7_ActivationDateLDP() {
TS retVal = this.getTypedField(7, 0);
return retVal;
}
/**
* Returns
* LDP-8: "Inactivation Date - LDP" - creates it if necessary
*/
public TS getInactivationDateLDP() {
TS retVal = this.getTypedField(8, 0);
return retVal;
}
/**
* Returns
* LDP-8: "Inactivation Date - LDP" - creates it if necessary
*/
public TS getLdp8_InactivationDateLDP() {
TS retVal = this.getTypedField(8, 0);
return retVal;
}
/**
* Returns
* LDP-9: "Inactivated Reason" - creates it if necessary
*/
public ST getInactivatedReason() {
ST retVal = this.getTypedField(9, 0);
return retVal;
}
/**
* Returns
* LDP-9: "Inactivated Reason" - creates it if necessary
*/
public ST getLdp9_InactivatedReason() {
ST retVal = this.getTypedField(9, 0);
return retVal;
}
/**
* Returns all repetitions of Visiting Hours (LDP-10).
*/
public VH[] getVisitingHours() {
VH[] retVal = this.getTypedField(10, new VH[0]);
return retVal;
}
/**
* Returns all repetitions of Visiting Hours (LDP-10).
*/
public VH[] getLdp10_VisitingHours() {
VH[] retVal = this.getTypedField(10, new VH[0]);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Visiting Hours (LDP-10).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getVisitingHoursReps() {
return this.getReps(10);
}
/**
* Returns a specific repetition of
* LDP-10: "Visiting Hours" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public VH getVisitingHours(int rep) {
VH retVal = this.getTypedField(10, rep);
return retVal;
}
/**
* Returns a specific repetition of
* LDP-10: "Visiting Hours" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public VH getLdp10_VisitingHours(int rep) {
VH retVal = this.getTypedField(10, rep);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Visiting Hours (LDP-10).
* This method does not create a repetition, so if no repetitions have currently been defined or accessed,
* it will return zero.
*/
public int getLdp10_VisitingHoursReps() {
return this.getReps(10);
}
/**
* Inserts a repetition of
* LDP-10: "Visiting Hours" 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 VH insertVisitingHours(int rep) throws HL7Exception {
return (VH) super.insertRepetition(10, rep);
}
/**
* Inserts a repetition of
* LDP-10: "Visiting Hours" 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 VH insertLdp10_VisitingHours(int rep) throws HL7Exception {
return (VH) super.insertRepetition(10, rep);
}
/**
* Removes a repetition of
* LDP-10: "Visiting Hours" 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 VH removeVisitingHours(int rep) throws HL7Exception {
return (VH) super.removeRepetition(10, rep);
}
/**
* Removes a repetition of
* LDP-10: "Visiting Hours" 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 VH removeLdp10_VisitingHours(int rep) throws HL7Exception {
return (VH) super.removeRepetition(10, rep);
}
/**
* Returns
* LDP-11: "Contact Phone" - creates it if necessary
*/
public XTN getContactPhone() {
XTN retVal = this.getTypedField(11, 0);
return retVal;
}
/**
* Returns
* LDP-11: "Contact Phone" - creates it if necessary
*/
public XTN getLdp11_ContactPhone() {
XTN retVal = this.getTypedField(11, 0);
return retVal;
}
/**
* Returns
* LDP-12: "Location Cost Center" - creates it if necessary
*/
public CE getLocationCostCenter() {
CE retVal = this.getTypedField(12, 0);
return retVal;
}
/**
* Returns
* LDP-12: "Location Cost Center" - creates it if necessary
*/
public CE getLdp12_LocationCostCenter() {
CE retVal = this.getTypedField(12, 0);
return retVal;
}
/** {@inheritDoc} */
protected Type createNewTypeWithoutReflection(int field) {
switch (field) {
case 0: return new PL(getMessage());
case 1: return new CE(getMessage());
case 2: return new IS(getMessage(), new Integer( 69 ));
case 3: return new CE(getMessage());
case 4: return new IS(getMessage(), new Integer( 4 ));
case 5: return new ID(getMessage(), new Integer( 183 ));
case 6: return new TS(getMessage());
case 7: return new TS(getMessage());
case 8: return new ST(getMessage());
case 9: return new VH(getMessage());
case 10: return new XTN(getMessage());
case 11: return new CE(getMessage());
default: return null;
}
}
}