001/*
002 * This class is an auto-generated source file for a HAPI
003 * HL7 v2.x standard structure class.
004 *
005 * For more information, visit: http://hl7api.sourceforge.net/
006 * 
007 * The contents of this file are subject to the Mozilla Public License Version 1.1 
008 * (the "License"); you may not use this file except in compliance with the License. 
009 * You may obtain a copy of the License at http://www.mozilla.org/MPL/ 
010 * Software distributed under the License is distributed on an "AS IS" basis, 
011 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
012 * specific language governing rights and limitations under the License. 
013 * 
014 * The Original Code is "NDL.java".  Description:
015 * "Composite class NDL"
016 * 
017 * The Initial Developer of the Original Code is University Health Network. Copyright (C) 
018 * 2013.  All Rights Reserved.
019 * 
020 * Contributor(s): ______________________________________. 
021 * 
022 * Alternatively, the contents of this file may be used under the terms of the 
023 * GNU General Public License (the  "GPL"), in which case the provisions of the GPL are 
024 * applicable instead of those above.  If you wish to allow use of your version of this 
025 * file only under the terms of the GPL and not to allow others to use your version 
026 * of this file under the MPL, indicate your decision by deleting  the provisions above 
027 * and replace  them with the notice and other provisions required by the GPL License.  
028 * If you do not delete the provisions above, a recipient may use your version of 
029 * this file under either the MPL or the GPL. 
030 * 
031 */
032
033package ca.uhn.hl7v2.model.v25.datatype;
034
035import ca.uhn.hl7v2.model.DataTypeException;
036import ca.uhn.hl7v2.model.Message;
037import ca.uhn.hl7v2.model.Type;
038import ca.uhn.hl7v2.model.AbstractComposite;
039
040
041/**
042 * <p>Represents an HL7 NDL (Name with Date and Location) data type. 
043 * This type consists of the following components:</p>
044 * <ul>
045 * <li>Name Of Person (CNN)
046 * <li>Start Date/time (TS)
047 * <li>End Date/time (TS)
048 * <li>Point of Care (IS)
049 * <li>Room (IS)
050 * <li>Bed (IS)
051 * <li>Facility (HD)
052 * <li>Location Status (IS)
053 * <li>Patient Location Type (IS)
054 * <li>Building (IS)
055 * <li>Floor (IS)
056 * </ul>
057 */
058@SuppressWarnings("unused")
059public class NDL extends AbstractComposite {
060
061    private Type[] data;
062
063    /** 
064     * Creates a new NDL type
065     */
066    public NDL(Message message) {
067        super(message);
068        init();
069    }
070
071    private void init() {
072        data = new Type[11];    
073        data[0] = new CNN(getMessage());
074        data[1] = new TS(getMessage());
075        data[2] = new TS(getMessage());
076        data[3] = new IS(getMessage(), 302);
077        data[4] = new IS(getMessage(), 303);
078        data[5] = new IS(getMessage(), 304);
079        data[6] = new HD(getMessage());
080        data[7] = new IS(getMessage(), 306);
081        data[8] = new IS(getMessage(), 305);
082        data[9] = new IS(getMessage(), 307);
083        data[10] = new IS(getMessage(), 308);
084    }
085
086
087    /**
088     * Returns an array containing the data elements.
089     */
090    public Type[] getComponents() { 
091        return this.data; 
092    }
093
094    /**
095     * Returns an individual data component.
096     *
097     * @param number The component number (0-indexed)
098     * @throws DataTypeException if the given element number is out of range.
099     */
100    public Type getComponent(int number) throws DataTypeException { 
101
102        try { 
103            return this.data[number]; 
104        } catch (ArrayIndexOutOfBoundsException e) { 
105            throw new DataTypeException("Element " + number + " doesn't exist (Type " + getClass().getName() + " has only " + this.data.length + " components)"); 
106        } 
107    } 
108
109
110    /**
111     * Returns Name Of Person (component 1).  This is a convenience method that saves you from 
112     * casting and handling an exception.
113     */
114    public CNN getNameOfPerson() {
115       return getTyped(0, CNN.class);
116    }
117
118    
119    /**
120     * Returns Name Of Person (component 1).  This is a convenience method that saves you from 
121     * casting and handling an exception.
122     */
123    public CNN getNdl1_NameOfPerson() {
124       return getTyped(0, CNN.class);
125    }
126
127
128    /**
129     * Returns Start Date/time (component 2).  This is a convenience method that saves you from 
130     * casting and handling an exception.
131     */
132    public TS getStartDateTime() {
133       return getTyped(1, TS.class);
134    }
135
136    
137    /**
138     * Returns Start Date/time (component 2).  This is a convenience method that saves you from 
139     * casting and handling an exception.
140     */
141    public TS getNdl2_StartDateTime() {
142       return getTyped(1, TS.class);
143    }
144
145
146    /**
147     * Returns End Date/time (component 3).  This is a convenience method that saves you from 
148     * casting and handling an exception.
149     */
150    public TS getEndDateTime() {
151       return getTyped(2, TS.class);
152    }
153
154    
155    /**
156     * Returns End Date/time (component 3).  This is a convenience method that saves you from 
157     * casting and handling an exception.
158     */
159    public TS getNdl3_EndDateTime() {
160       return getTyped(2, TS.class);
161    }
162
163
164    /**
165     * Returns Point of Care (component 4).  This is a convenience method that saves you from 
166     * casting and handling an exception.
167     */
168    public IS getPointOfCare() {
169       return getTyped(3, IS.class);
170    }
171
172    
173    /**
174     * Returns Point of Care (component 4).  This is a convenience method that saves you from 
175     * casting and handling an exception.
176     */
177    public IS getNdl4_PointOfCare() {
178       return getTyped(3, IS.class);
179    }
180
181
182    /**
183     * Returns Room (component 5).  This is a convenience method that saves you from 
184     * casting and handling an exception.
185     */
186    public IS getRoom() {
187       return getTyped(4, IS.class);
188    }
189
190    
191    /**
192     * Returns Room (component 5).  This is a convenience method that saves you from 
193     * casting and handling an exception.
194     */
195    public IS getNdl5_Room() {
196       return getTyped(4, IS.class);
197    }
198
199
200    /**
201     * Returns Bed (component 6).  This is a convenience method that saves you from 
202     * casting and handling an exception.
203     */
204    public IS getBed() {
205       return getTyped(5, IS.class);
206    }
207
208    
209    /**
210     * Returns Bed (component 6).  This is a convenience method that saves you from 
211     * casting and handling an exception.
212     */
213    public IS getNdl6_Bed() {
214       return getTyped(5, IS.class);
215    }
216
217
218    /**
219     * Returns Facility (component 7).  This is a convenience method that saves you from 
220     * casting and handling an exception.
221     */
222    public HD getFacility() {
223       return getTyped(6, HD.class);
224    }
225
226    
227    /**
228     * Returns Facility (component 7).  This is a convenience method that saves you from 
229     * casting and handling an exception.
230     */
231    public HD getNdl7_Facility() {
232       return getTyped(6, HD.class);
233    }
234
235
236    /**
237     * Returns Location Status (component 8).  This is a convenience method that saves you from 
238     * casting and handling an exception.
239     */
240    public IS getLocationStatus() {
241       return getTyped(7, IS.class);
242    }
243
244    
245    /**
246     * Returns Location Status (component 8).  This is a convenience method that saves you from 
247     * casting and handling an exception.
248     */
249    public IS getNdl8_LocationStatus() {
250       return getTyped(7, IS.class);
251    }
252
253
254    /**
255     * Returns Patient Location Type (component 9).  This is a convenience method that saves you from 
256     * casting and handling an exception.
257     */
258    public IS getPatientLocationType() {
259       return getTyped(8, IS.class);
260    }
261
262    
263    /**
264     * Returns Patient Location Type (component 9).  This is a convenience method that saves you from 
265     * casting and handling an exception.
266     */
267    public IS getNdl9_PatientLocationType() {
268       return getTyped(8, IS.class);
269    }
270
271
272    /**
273     * Returns Building (component 10).  This is a convenience method that saves you from 
274     * casting and handling an exception.
275     */
276    public IS getBuilding() {
277       return getTyped(9, IS.class);
278    }
279
280    
281    /**
282     * Returns Building (component 10).  This is a convenience method that saves you from 
283     * casting and handling an exception.
284     */
285    public IS getNdl10_Building() {
286       return getTyped(9, IS.class);
287    }
288
289
290    /**
291     * Returns Floor (component 11).  This is a convenience method that saves you from 
292     * casting and handling an exception.
293     */
294    public IS getFloor() {
295       return getTyped(10, IS.class);
296    }
297
298    
299    /**
300     * Returns Floor (component 11).  This is a convenience method that saves you from 
301     * casting and handling an exception.
302     */
303    public IS getNdl11_Floor() {
304       return getTyped(10, IS.class);
305    }
306
307
308
309}
310