1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 package ca.uhn.hl7v2.model.v231.segment;
35
36
37 import ca.uhn.hl7v2.model.v231.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
50
51
52
53
54
55
56
57
58
59
60 @SuppressWarnings("unused")
61 public class EVN extends AbstractSegment {
62
63
64
65
66 public EVN(Group parent, ModelClassFactory factory) {
67 super(parent, factory);
68 init(factory);
69 }
70
71 private void init(ModelClassFactory factory) {
72 try {
73 this.add(ID.class, false, 1, 3, new Object[]{ getMessage(), new Integer(3) }, "Event Type Code");
74 this.add(TS.class, true, 1, 26, new Object[]{ getMessage() }, "Recorded Date/Time");
75 this.add(TS.class, false, 1, 26, new Object[]{ getMessage() }, "Date/Time Planned Event");
76 this.add(IS.class, false, 1, 3, new Object[]{ getMessage(), new Integer(62) }, "Event Reason Code");
77 this.add(XCN.class, false, 0, 60, new Object[]{ getMessage() }, "Operator ID");
78 this.add(TS.class, false, 1, 26, new Object[]{ getMessage() }, "Event Occurred");
79 } catch(HL7Exception e) {
80 log.error("Unexpected error creating EVN - this is probably a bug in the source code generator.", e);
81 }
82 }
83
84
85
86
87
88
89
90 public ID getEventTypeCode() {
91 ID retVal = this.getTypedField(1, 0);
92 return retVal;
93 }
94
95
96
97
98
99 public ID getEvn1_EventTypeCode() {
100 ID retVal = this.getTypedField(1, 0);
101 return retVal;
102 }
103
104
105
106
107
108
109
110 public TS getRecordedDateTime() {
111 TS retVal = this.getTypedField(2, 0);
112 return retVal;
113 }
114
115
116
117
118
119 public TS getEvn2_RecordedDateTime() {
120 TS retVal = this.getTypedField(2, 0);
121 return retVal;
122 }
123
124
125
126
127
128
129
130 public TS getDateTimePlannedEvent() {
131 TS retVal = this.getTypedField(3, 0);
132 return retVal;
133 }
134
135
136
137
138
139 public TS getEvn3_DateTimePlannedEvent() {
140 TS retVal = this.getTypedField(3, 0);
141 return retVal;
142 }
143
144
145
146
147
148
149
150 public IS getEventReasonCode() {
151 IS retVal = this.getTypedField(4, 0);
152 return retVal;
153 }
154
155
156
157
158
159 public IS getEvn4_EventReasonCode() {
160 IS retVal = this.getTypedField(4, 0);
161 return retVal;
162 }
163
164
165
166
167
168 public XCN[] getOperatorID() {
169 XCN[] retVal = this.getTypedField(5, new XCN[0]);
170 return retVal;
171 }
172
173
174
175
176
177 public XCN[] getEvn5_OperatorID() {
178 XCN[] retVal = this.getTypedField(5, new XCN[0]);
179 return retVal;
180 }
181
182
183
184
185
186
187
188 public int getOperatorIDReps() {
189 return this.getReps(5);
190 }
191
192
193
194
195
196
197
198
199 public XCN getOperatorID(int rep) {
200 XCN retVal = this.getTypedField(5, rep);
201 return retVal;
202 }
203
204
205
206
207
208
209
210 public XCN getEvn5_OperatorID(int rep) {
211 XCN retVal = this.getTypedField(5, rep);
212 return retVal;
213 }
214
215
216
217
218
219
220 public int getEvn5_OperatorIDReps() {
221 return this.getReps(5);
222 }
223
224
225
226
227
228
229
230
231
232 public XCN insertOperatorID(int rep) throws HL7Exception {
233 return (XCN) super.insertRepetition(5, rep);
234 }
235
236
237
238
239
240
241
242
243
244 public XCN insertEvn5_OperatorID(int rep) throws HL7Exception {
245 return (XCN) super.insertRepetition(5, rep);
246 }
247
248
249
250
251
252
253
254
255
256 public XCN removeOperatorID(int rep) throws HL7Exception {
257 return (XCN) super.removeRepetition(5, rep);
258 }
259
260
261
262
263
264
265
266
267
268 public XCN removeEvn5_OperatorID(int rep) throws HL7Exception {
269 return (XCN) super.removeRepetition(5, rep);
270 }
271
272
273
274
275
276
277
278
279 public TS getEventOccurred() {
280 TS retVal = this.getTypedField(6, 0);
281 return retVal;
282 }
283
284
285
286
287
288 public TS getEvn6_EventOccurred() {
289 TS retVal = this.getTypedField(6, 0);
290 return retVal;
291 }
292
293
294
295
296
297
298 protected Type createNewTypeWithoutReflection(int field) {
299 switch (field) {
300 case 0: return new ID(getMessage(), new Integer( 3 ));
301 case 1: return new TS(getMessage());
302 case 2: return new TS(getMessage());
303 case 3: return new IS(getMessage(), new Integer( 62 ));
304 case 4: return new XCN(getMessage());
305 case 5: return new TS(getMessage());
306 default: return null;
307 }
308 }
309
310
311 }
312