View Javadoc
1   /*
2    * This class is an auto-generated source file for a HAPI
3    * HL7 v2.x standard structure class.
4    *
5    * For more information, visit: http://hl7api.sourceforge.net/
6    * 
7    * The contents of this file are subject to the Mozilla Public License Version 1.1 
8    * (the "License"); you may not use this file except in compliance with the License. 
9    * You may obtain a copy of the License at http://www.mozilla.org/MPL/ 
10   * Software distributed under the License is distributed on an "AS IS" basis, 
11   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
12   * specific language governing rights and limitations under the License. 
13   * 
14   * The Original Code is "[file_name]".  Description: 
15   * "[one_line_description]" 
16   * 
17   * The Initial Developer of the Original Code is University Health Network. Copyright (C) 
18   * 2012.  All Rights Reserved. 
19   * 
20   * Contributor(s): ______________________________________. 
21   * 
22   * Alternatively, the contents of this file may be used under the terms of the 
23   * GNU General Public License (the  "GPL"), in which case the provisions of the GPL are 
24   * applicable instead of those above.  If you wish to allow use of your version of this 
25   * file only under the terms of the GPL and not to allow others to use your version 
26   * of this file under the MPL, indicate your decision by deleting  the provisions above 
27   * and replace  them with the notice and other provisions required by the GPL License.  
28   * If you do not delete the provisions above, a recipient may use your version of 
29   * this file under either the MPL or the GPL. 
30   * 
31   */
32  
33  
34  package ca.uhn.hl7v2.model.v25.segment;
35  
36  // import ca.uhn.hl7v2.model.v25.group.*;
37  import ca.uhn.hl7v2.model.v25.datatype.*;
38  import ca.uhn.hl7v2.HL7Exception;
39  import ca.uhn.hl7v2.parser.ModelClassFactory;
40  import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
41  import ca.uhn.hl7v2.model.AbstractMessage;
42  import ca.uhn.hl7v2.model.Group;
43  import ca.uhn.hl7v2.model.Type;
44  import ca.uhn.hl7v2.model.AbstractSegment;
45  import ca.uhn.hl7v2.model.Varies;
46  
47  
48  /**
49   *<p>Represents an HL7 ACC message segment (Accident). 
50   * This segment has the following fields:</p>
51   * <ul>
52       * <li>ACC-1: Accident Date/Time (TS) <b>optional </b>
53       * <li>ACC-2: Accident Code (CE) <b>optional </b>
54       * <li>ACC-3: Accident Location (ST) <b>optional </b>
55       * <li>ACC-4: Auto Accident State (CE) <b>optional </b>
56       * <li>ACC-5: Accident Job Related Indicator (ID) <b>optional </b>
57       * <li>ACC-6: Accident Death Indicator (ID) <b>optional </b>
58       * <li>ACC-7: Entered By (XCN) <b>optional </b>
59       * <li>ACC-8: Accident Description (ST) <b>optional </b>
60       * <li>ACC-9: Brought In By (ST) <b>optional </b>
61       * <li>ACC-10: Police Notified Indicator (ID) <b>optional </b>
62       * <li>ACC-11: Accident Address (XAD) <b>optional </b>
63   * </ul>
64   */
65  @SuppressWarnings("unused")
66  public class ACC extends AbstractSegment {
67  
68      /** 
69       * Creates a new ACC segment
70       */
71      public ACC(Group parent, ModelClassFactory factory) {
72         super(parent, factory);
73         init(factory);
74      }
75  
76      private void init(ModelClassFactory factory) {
77         try {
78                                    this.add(TS.class, false, 1, 26, new Object[]{ getMessage() }, "Accident Date/Time");
79                                    this.add(CE.class, false, 1, 250, new Object[]{ getMessage() }, "Accident Code");
80                                    this.add(ST.class, false, 1, 25, new Object[]{ getMessage() }, "Accident Location");
81                                    this.add(CE.class, false, 1, 250, new Object[]{ getMessage() }, "Auto Accident State");
82                                                this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), new Integer(136) }, "Accident Job Related Indicator");
83                                                this.add(ID.class, false, 1, 12, new Object[]{ getMessage(), new Integer(136) }, "Accident Death Indicator");
84                                    this.add(XCN.class, false, 1, 250, new Object[]{ getMessage() }, "Entered By");
85                                    this.add(ST.class, false, 1, 25, new Object[]{ getMessage() }, "Accident Description");
86                                    this.add(ST.class, false, 1, 80, new Object[]{ getMessage() }, "Brought In By");
87                                                this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), new Integer(136) }, "Police Notified Indicator");
88                                    this.add(XAD.class, false, 1, 250, new Object[]{ getMessage() }, "Accident Address");
89         } catch(HL7Exception e) {
90            log.error("Unexpected error creating ACC - this is probably a bug in the source code generator.", e);
91         }
92      }
93  
94  
95  
96      /**
97       * Returns
98       * ACC-1: "Accident Date/Time" - creates it if necessary
99       */
100     public TS getAccidentDateTime() { 
101 		TS retVal = this.getTypedField(1, 0);
102 		return retVal;
103     }
104     
105     /**
106      * Returns
107      * ACC-1: "Accident Date/Time" - creates it if necessary
108      */
109     public TS getAcc1_AccidentDateTime() { 
110 		TS retVal = this.getTypedField(1, 0);
111 		return retVal;
112     }
113 
114 
115 
116     /**
117      * Returns
118      * ACC-2: "Accident Code" - creates it if necessary
119      */
120     public CE getAccidentCode() { 
121 		CE retVal = this.getTypedField(2, 0);
122 		return retVal;
123     }
124     
125     /**
126      * Returns
127      * ACC-2: "Accident Code" - creates it if necessary
128      */
129     public CE getAcc2_AccidentCode() { 
130 		CE retVal = this.getTypedField(2, 0);
131 		return retVal;
132     }
133 
134 
135 
136     /**
137      * Returns
138      * ACC-3: "Accident Location" - creates it if necessary
139      */
140     public ST getAccidentLocation() { 
141 		ST retVal = this.getTypedField(3, 0);
142 		return retVal;
143     }
144     
145     /**
146      * Returns
147      * ACC-3: "Accident Location" - creates it if necessary
148      */
149     public ST getAcc3_AccidentLocation() { 
150 		ST retVal = this.getTypedField(3, 0);
151 		return retVal;
152     }
153 
154 
155 
156     /**
157      * Returns
158      * ACC-4: "Auto Accident State" - creates it if necessary
159      */
160     public CE getAutoAccidentState() { 
161 		CE retVal = this.getTypedField(4, 0);
162 		return retVal;
163     }
164     
165     /**
166      * Returns
167      * ACC-4: "Auto Accident State" - creates it if necessary
168      */
169     public CE getAcc4_AutoAccidentState() { 
170 		CE retVal = this.getTypedField(4, 0);
171 		return retVal;
172     }
173 
174 
175 
176     /**
177      * Returns
178      * ACC-5: "Accident Job Related Indicator" - creates it if necessary
179      */
180     public ID getAccidentJobRelatedIndicator() { 
181 		ID retVal = this.getTypedField(5, 0);
182 		return retVal;
183     }
184     
185     /**
186      * Returns
187      * ACC-5: "Accident Job Related Indicator" - creates it if necessary
188      */
189     public ID getAcc5_AccidentJobRelatedIndicator() { 
190 		ID retVal = this.getTypedField(5, 0);
191 		return retVal;
192     }
193 
194 
195 
196     /**
197      * Returns
198      * ACC-6: "Accident Death Indicator" - creates it if necessary
199      */
200     public ID getAccidentDeathIndicator() { 
201 		ID retVal = this.getTypedField(6, 0);
202 		return retVal;
203     }
204     
205     /**
206      * Returns
207      * ACC-6: "Accident Death Indicator" - creates it if necessary
208      */
209     public ID getAcc6_AccidentDeathIndicator() { 
210 		ID retVal = this.getTypedField(6, 0);
211 		return retVal;
212     }
213 
214 
215 
216     /**
217      * Returns
218      * ACC-7: "Entered By" - creates it if necessary
219      */
220     public XCN getEnteredBy() { 
221 		XCN retVal = this.getTypedField(7, 0);
222 		return retVal;
223     }
224     
225     /**
226      * Returns
227      * ACC-7: "Entered By" - creates it if necessary
228      */
229     public XCN getAcc7_EnteredBy() { 
230 		XCN retVal = this.getTypedField(7, 0);
231 		return retVal;
232     }
233 
234 
235 
236     /**
237      * Returns
238      * ACC-8: "Accident Description" - creates it if necessary
239      */
240     public ST getAccidentDescription() { 
241 		ST retVal = this.getTypedField(8, 0);
242 		return retVal;
243     }
244     
245     /**
246      * Returns
247      * ACC-8: "Accident Description" - creates it if necessary
248      */
249     public ST getAcc8_AccidentDescription() { 
250 		ST retVal = this.getTypedField(8, 0);
251 		return retVal;
252     }
253 
254 
255 
256     /**
257      * Returns
258      * ACC-9: "Brought In By" - creates it if necessary
259      */
260     public ST getBroughtInBy() { 
261 		ST retVal = this.getTypedField(9, 0);
262 		return retVal;
263     }
264     
265     /**
266      * Returns
267      * ACC-9: "Brought In By" - creates it if necessary
268      */
269     public ST getAcc9_BroughtInBy() { 
270 		ST retVal = this.getTypedField(9, 0);
271 		return retVal;
272     }
273 
274 
275 
276     /**
277      * Returns
278      * ACC-10: "Police Notified Indicator" - creates it if necessary
279      */
280     public ID getPoliceNotifiedIndicator() { 
281 		ID retVal = this.getTypedField(10, 0);
282 		return retVal;
283     }
284     
285     /**
286      * Returns
287      * ACC-10: "Police Notified Indicator" - creates it if necessary
288      */
289     public ID getAcc10_PoliceNotifiedIndicator() { 
290 		ID retVal = this.getTypedField(10, 0);
291 		return retVal;
292     }
293 
294 
295 
296     /**
297      * Returns
298      * ACC-11: "Accident Address" - creates it if necessary
299      */
300     public XAD getAccidentAddress() { 
301 		XAD retVal = this.getTypedField(11, 0);
302 		return retVal;
303     }
304     
305     /**
306      * Returns
307      * ACC-11: "Accident Address" - creates it if necessary
308      */
309     public XAD getAcc11_AccidentAddress() { 
310 		XAD retVal = this.getTypedField(11, 0);
311 		return retVal;
312     }
313 
314 
315 
316 
317 
318     /** {@inheritDoc} */   
319     protected Type createNewTypeWithoutReflection(int field) {
320        switch (field) {
321           case 0: return new TS(getMessage());
322           case 1: return new CE(getMessage());
323           case 2: return new ST(getMessage());
324           case 3: return new CE(getMessage());
325           case 4: return new ID(getMessage(), new Integer( 136 ));
326           case 5: return new ID(getMessage(), new Integer( 136 ));
327           case 6: return new XCN(getMessage());
328           case 7: return new ST(getMessage());
329           case 8: return new ST(getMessage());
330           case 9: return new ID(getMessage(), new Integer( 136 ));
331           case 10: return new XAD(getMessage());
332           default: return null;
333        }
334    }
335 
336 
337 }
338