ca.uhn.hl7v2.model.v23.segment.LDP Maven / Gradle / Ivy
The 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/
*
* 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.v23.segment;
// import ca.uhn.hl7v2.model.v23.group.*;
import ca.uhn.hl7v2.model.v23.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: LDP Primary Key Value (PL)
*
- LDP-2: Location Department (IS)
*
- LDP-3: Location Service (IS) optional repeating
*
- LDP-4: Speciality Type (CE) optional repeating
*
- LDP-5: Valid Patient Classes (ID) optional repeating
*
- LDP-6: Active/Inactive Flag (ID) optional
*
- LDP-7: Activation Date (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
*
*/
@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, 20, new Object[]{ getMessage() }, "LDP Primary Key Value");
this.add(IS.class, true, 1, 10, new Object[]{ getMessage(), new Integer(264) }, "Location Department");
this.add(IS.class, false, 0, 3, new Object[]{ getMessage(), new Integer(69) }, "Location Service");
this.add(CE.class, false, 0, 60, new Object[]{ getMessage() }, "Speciality Type");
this.add(ID.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, 19, new Object[]{ getMessage() }, "Activation Date");
this.add(TS.class, false, 1, 19, 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, 40, new Object[]{ getMessage() }, "Contact Phone");
} catch(HL7Exception e) {
log.error("Unexpected error creating LDP - this is probably a bug in the source code generator.", e);
}
}
/**
* Returns
* LDP-1: "LDP Primary Key Value" - creates it if necessary
*/
public PL getLDPPrimaryKeyValue() {
PL retVal = this.getTypedField(1, 0);
return retVal;
}
/**
* Returns
* LDP-1: "LDP Primary Key Value" - creates it if necessary
*/
public PL getLdp1_LDPPrimaryKeyValue() {
PL retVal = this.getTypedField(1, 0);
return retVal;
}
/**
* Returns
* LDP-2: "Location Department" - creates it if necessary
*/
public IS getLocationDepartment() {
IS retVal = this.getTypedField(2, 0);
return retVal;
}
/**
* Returns
* LDP-2: "Location Department" - creates it if necessary
*/
public IS getLdp2_LocationDepartment() {
IS 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 Speciality Type (LDP-4).
*/
public CE[] getSpecialityType() {
CE[] retVal = this.getTypedField(4, new CE[0]);
return retVal;
}
/**
* Returns all repetitions of Speciality Type (LDP-4).
*/
public CE[] getLdp4_SpecialityType() {
CE[] retVal = this.getTypedField(4, new CE[0]);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Speciality 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 getSpecialityTypeReps() {
return this.getReps(4);
}
/**
* Returns a specific repetition of
* LDP-4: "Speciality Type" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public CE getSpecialityType(int rep) {
CE retVal = this.getTypedField(4, rep);
return retVal;
}
/**
* Returns a specific repetition of
* LDP-4: "Speciality Type" - creates it if necessary
*
* @param rep The repetition index (0-indexed)
*/
public CE getLdp4_SpecialityType(int rep) {
CE retVal = this.getTypedField(4, rep);
return retVal;
}
/**
* Returns a count of the current number of repetitions of Speciality 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_SpecialityTypeReps() {
return this.getReps(4);
}
/**
* Inserts a repetition of
* LDP-4: "Speciality 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 insertSpecialityType(int rep) throws HL7Exception {
return (CE) super.insertRepetition(4, rep);
}
/**
* Inserts a repetition of
* LDP-4: "Speciality 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_SpecialityType(int rep) throws HL7Exception {
return (CE) super.insertRepetition(4, rep);
}
/**
* Removes a repetition of
* LDP-4: "Speciality 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 removeSpecialityType(int rep) throws HL7Exception {
return (CE) super.removeRepetition(4, rep);
}
/**
* Removes a repetition of
* LDP-4: "Speciality 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_SpecialityType(int rep) throws HL7Exception {
return (CE) super.removeRepetition(4, rep);
}
/**
* Returns all repetitions of Valid Patient Classes (LDP-5).
*/
public ID[] getValidPatientClasses() {
ID[] retVal = this.getTypedField(5, new ID[0]);
return retVal;
}
/**
* Returns all repetitions of Valid Patient Classes (LDP-5).
*/
public ID[] getLdp5_ValidPatientClasses() {
ID[] retVal = this.getTypedField(5, new ID[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 ID getValidPatientClasses(int rep) {
ID 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 ID getLdp5_ValidPatientClasses(int rep) {
ID 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 ID insertValidPatientClasses(int rep) throws HL7Exception {
return (ID) 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 ID insertLdp5_ValidPatientClasses(int rep) throws HL7Exception {
return (ID) 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 ID removeValidPatientClasses(int rep) throws HL7Exception {
return (ID) 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 ID removeLdp5_ValidPatientClasses(int rep) throws HL7Exception {
return (ID) 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" - creates it if necessary
*/
public TS getActivationDate() {
TS retVal = this.getTypedField(7, 0);
return retVal;
}
/**
* Returns
* LDP-7: "Activation Date" - creates it if necessary
*/
public TS getLdp7_ActivationDate() {
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;
}
/** {@inheritDoc} */
protected Type createNewTypeWithoutReflection(int field) {
switch (field) {
case 0: return new PL(getMessage());
case 1: return new IS(getMessage(), new Integer( 264 ));
case 2: return new IS(getMessage(), new Integer( 69 ));
case 3: return new CE(getMessage());
case 4: return new ID(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());
default: return null;
}
}
}