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

ca.uhn.hl7v2.model.v23.segment.PRD 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 PRD message segment (Provider Data). * This segment has the following fields:

*
    *
  • PRD-1: Role (CE) repeating *
  • PRD-2: Provider Name (XPN) optional repeating *
  • PRD-3: Provider Address (XAD) optional *
  • PRD-4: Provider Location (PL) optional *
  • PRD-5: Provider Communication Information (XTN) optional repeating *
  • PRD-6: Preferred Method of Contact (CE) optional *
  • PRD-7: Provider Identifiers (CM_PI) optional repeating *
  • PRD-8: Effective Start Date of Role (TS) optional *
  • PRD-9: Effective End Date of Role (TS) optional *
*/ @SuppressWarnings("unused") public class PRD extends AbstractSegment { /** * Creates a new PRD segment */ public PRD(Group parent, ModelClassFactory factory) { super(parent, factory); init(factory); } private void init(ModelClassFactory factory) { try { this.add(CE.class, true, 0, 200, new Object[]{ getMessage() }, "Role"); this.add(XPN.class, false, 0, 106, new Object[]{ getMessage() }, "Provider Name"); this.add(XAD.class, false, 1, 60, new Object[]{ getMessage() }, "Provider Address"); this.add(PL.class, false, 1, 60, new Object[]{ getMessage() }, "Provider Location"); this.add(XTN.class, false, 0, 20, new Object[]{ getMessage() }, "Provider Communication Information"); this.add(CE.class, false, 1, 200, new Object[]{ getMessage() }, "Preferred Method of Contact"); this.add(CM_PI.class, false, 0, 100, new Object[]{ getMessage() }, "Provider Identifiers"); this.add(TS.class, false, 1, 26, new Object[]{ getMessage() }, "Effective Start Date of Role"); this.add(TS.class, false, 1, 26, new Object[]{ getMessage() }, "Effective End Date of Role"); } catch(HL7Exception e) { log.error("Unexpected error creating PRD - this is probably a bug in the source code generator.", e); } } /** * Returns all repetitions of Role (PRD-1). */ public CE[] getRole() { CE[] retVal = this.getTypedField(1, new CE[0]); return retVal; } /** * Returns all repetitions of Role (PRD-1). */ public CE[] getPrd1_Role() { CE[] retVal = this.getTypedField(1, new CE[0]); return retVal; } /** * Returns a count of the current number of repetitions of Role (PRD-1). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getRoleReps() { return this.getReps(1); } /** * Returns a specific repetition of * PRD-1: "Role" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CE getRole(int rep) { CE retVal = this.getTypedField(1, rep); return retVal; } /** * Returns a specific repetition of * PRD-1: "Role" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CE getPrd1_Role(int rep) { CE retVal = this.getTypedField(1, rep); return retVal; } /** * Returns a count of the current number of repetitions of Role (PRD-1). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getPrd1_RoleReps() { return this.getReps(1); } /** * Inserts a repetition of * PRD-1: "Role" 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 insertRole(int rep) throws HL7Exception { return (CE) super.insertRepetition(1, rep); } /** * Inserts a repetition of * PRD-1: "Role" 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 insertPrd1_Role(int rep) throws HL7Exception { return (CE) super.insertRepetition(1, rep); } /** * Removes a repetition of * PRD-1: "Role" 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 removeRole(int rep) throws HL7Exception { return (CE) super.removeRepetition(1, rep); } /** * Removes a repetition of * PRD-1: "Role" 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 removePrd1_Role(int rep) throws HL7Exception { return (CE) super.removeRepetition(1, rep); } /** * Returns all repetitions of Provider Name (PRD-2). */ public XPN[] getProviderName() { XPN[] retVal = this.getTypedField(2, new XPN[0]); return retVal; } /** * Returns all repetitions of Provider Name (PRD-2). */ public XPN[] getPrd2_ProviderName() { XPN[] retVal = this.getTypedField(2, new XPN[0]); return retVal; } /** * Returns a count of the current number of repetitions of Provider Name (PRD-2). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getProviderNameReps() { return this.getReps(2); } /** * Returns a specific repetition of * PRD-2: "Provider Name" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XPN getProviderName(int rep) { XPN retVal = this.getTypedField(2, rep); return retVal; } /** * Returns a specific repetition of * PRD-2: "Provider Name" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XPN getPrd2_ProviderName(int rep) { XPN retVal = this.getTypedField(2, rep); return retVal; } /** * Returns a count of the current number of repetitions of Provider Name (PRD-2). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getPrd2_ProviderNameReps() { return this.getReps(2); } /** * Inserts a repetition of * PRD-2: "Provider Name" 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 XPN insertProviderName(int rep) throws HL7Exception { return (XPN) super.insertRepetition(2, rep); } /** * Inserts a repetition of * PRD-2: "Provider Name" 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 XPN insertPrd2_ProviderName(int rep) throws HL7Exception { return (XPN) super.insertRepetition(2, rep); } /** * Removes a repetition of * PRD-2: "Provider Name" 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 XPN removeProviderName(int rep) throws HL7Exception { return (XPN) super.removeRepetition(2, rep); } /** * Removes a repetition of * PRD-2: "Provider Name" 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 XPN removePrd2_ProviderName(int rep) throws HL7Exception { return (XPN) super.removeRepetition(2, rep); } /** * Returns * PRD-3: "Provider Address" - creates it if necessary */ public XAD getProviderAddress() { XAD retVal = this.getTypedField(3, 0); return retVal; } /** * Returns * PRD-3: "Provider Address" - creates it if necessary */ public XAD getPrd3_ProviderAddress() { XAD retVal = this.getTypedField(3, 0); return retVal; } /** * Returns * PRD-4: "Provider Location" - creates it if necessary */ public PL getProviderLocation() { PL retVal = this.getTypedField(4, 0); return retVal; } /** * Returns * PRD-4: "Provider Location" - creates it if necessary */ public PL getPrd4_ProviderLocation() { PL retVal = this.getTypedField(4, 0); return retVal; } /** * Returns all repetitions of Provider Communication Information (PRD-5). */ public XTN[] getProviderCommunicationInformation() { XTN[] retVal = this.getTypedField(5, new XTN[0]); return retVal; } /** * Returns all repetitions of Provider Communication Information (PRD-5). */ public XTN[] getPrd5_ProviderCommunicationInformation() { XTN[] retVal = this.getTypedField(5, new XTN[0]); return retVal; } /** * Returns a count of the current number of repetitions of Provider Communication Information (PRD-5). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getProviderCommunicationInformationReps() { return this.getReps(5); } /** * Returns a specific repetition of * PRD-5: "Provider Communication Information" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XTN getProviderCommunicationInformation(int rep) { XTN retVal = this.getTypedField(5, rep); return retVal; } /** * Returns a specific repetition of * PRD-5: "Provider Communication Information" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public XTN getPrd5_ProviderCommunicationInformation(int rep) { XTN retVal = this.getTypedField(5, rep); return retVal; } /** * Returns a count of the current number of repetitions of Provider Communication Information (PRD-5). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getPrd5_ProviderCommunicationInformationReps() { return this.getReps(5); } /** * Inserts a repetition of * PRD-5: "Provider Communication Information" 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 XTN insertProviderCommunicationInformation(int rep) throws HL7Exception { return (XTN) super.insertRepetition(5, rep); } /** * Inserts a repetition of * PRD-5: "Provider Communication Information" 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 XTN insertPrd5_ProviderCommunicationInformation(int rep) throws HL7Exception { return (XTN) super.insertRepetition(5, rep); } /** * Removes a repetition of * PRD-5: "Provider Communication Information" 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 XTN removeProviderCommunicationInformation(int rep) throws HL7Exception { return (XTN) super.removeRepetition(5, rep); } /** * Removes a repetition of * PRD-5: "Provider Communication Information" 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 XTN removePrd5_ProviderCommunicationInformation(int rep) throws HL7Exception { return (XTN) super.removeRepetition(5, rep); } /** * Returns * PRD-6: "Preferred Method of Contact" - creates it if necessary */ public CE getPreferredMethodOfContact() { CE retVal = this.getTypedField(6, 0); return retVal; } /** * Returns * PRD-6: "Preferred Method of Contact" - creates it if necessary */ public CE getPrd6_PreferredMethodOfContact() { CE retVal = this.getTypedField(6, 0); return retVal; } /** * Returns all repetitions of Provider Identifiers (PRD-7). */ public CM_PI[] getProviderIdentifiers() { CM_PI[] retVal = this.getTypedField(7, new CM_PI[0]); return retVal; } /** * Returns all repetitions of Provider Identifiers (PRD-7). */ public CM_PI[] getPrd7_ProviderIdentifiers() { CM_PI[] retVal = this.getTypedField(7, new CM_PI[0]); return retVal; } /** * Returns a count of the current number of repetitions of Provider Identifiers (PRD-7). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getProviderIdentifiersReps() { return this.getReps(7); } /** * Returns a specific repetition of * PRD-7: "Provider Identifiers" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CM_PI getProviderIdentifiers(int rep) { CM_PI retVal = this.getTypedField(7, rep); return retVal; } /** * Returns a specific repetition of * PRD-7: "Provider Identifiers" - creates it if necessary * * @param rep The repetition index (0-indexed) */ public CM_PI getPrd7_ProviderIdentifiers(int rep) { CM_PI retVal = this.getTypedField(7, rep); return retVal; } /** * Returns a count of the current number of repetitions of Provider Identifiers (PRD-7). * This method does not create a repetition, so if no repetitions have currently been defined or accessed, * it will return zero. */ public int getPrd7_ProviderIdentifiersReps() { return this.getReps(7); } /** * Inserts a repetition of * PRD-7: "Provider Identifiers" 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 CM_PI insertProviderIdentifiers(int rep) throws HL7Exception { return (CM_PI) super.insertRepetition(7, rep); } /** * Inserts a repetition of * PRD-7: "Provider Identifiers" 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 CM_PI insertPrd7_ProviderIdentifiers(int rep) throws HL7Exception { return (CM_PI) super.insertRepetition(7, rep); } /** * Removes a repetition of * PRD-7: "Provider Identifiers" 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 CM_PI removeProviderIdentifiers(int rep) throws HL7Exception { return (CM_PI) super.removeRepetition(7, rep); } /** * Removes a repetition of * PRD-7: "Provider Identifiers" 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 CM_PI removePrd7_ProviderIdentifiers(int rep) throws HL7Exception { return (CM_PI) super.removeRepetition(7, rep); } /** * Returns * PRD-8: "Effective Start Date of Role" - creates it if necessary */ public TS getEffectiveStartDateOfRole() { TS retVal = this.getTypedField(8, 0); return retVal; } /** * Returns * PRD-8: "Effective Start Date of Role" - creates it if necessary */ public TS getPrd8_EffectiveStartDateOfRole() { TS retVal = this.getTypedField(8, 0); return retVal; } /** * Returns * PRD-9: "Effective End Date of Role" - creates it if necessary */ public TS getEffectiveEndDateOfRole() { TS retVal = this.getTypedField(9, 0); return retVal; } /** * Returns * PRD-9: "Effective End Date of Role" - creates it if necessary */ public TS getPrd9_EffectiveEndDateOfRole() { TS retVal = this.getTypedField(9, 0); return retVal; } /** {@inheritDoc} */ protected Type createNewTypeWithoutReflection(int field) { switch (field) { case 0: return new CE(getMessage()); case 1: return new XPN(getMessage()); case 2: return new XAD(getMessage()); case 3: return new PL(getMessage()); case 4: return new XTN(getMessage()); case 5: return new CE(getMessage()); case 6: return new CM_PI(getMessage()); case 7: return new TS(getMessage()); case 8: return new TS(getMessage()); default: return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy