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.v24.segment;
35
36
37 import ca.uhn.hl7v2.model.v24.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76 @SuppressWarnings("unused")
77 public class RXG extends AbstractSegment {
78
79
80
81
82 public RXG(Group parent, ModelClassFactory factory) {
83 super(parent, factory);
84 init(factory);
85 }
86
87 private void init(ModelClassFactory factory) {
88 try {
89 this.add(NM.class, true, 1, 4, new Object[]{ getMessage() }, "Give Sub-ID Counter");
90 this.add(NM.class, false, 1, 4, new Object[]{ getMessage() }, "Dispense Sub-ID Counter");
91 this.add(TQ.class, true, 1, 200, new Object[]{ getMessage() }, "Quantity/Timing");
92 this.add(CE.class, true, 1, 250, new Object[]{ getMessage() }, "Give Code");
93 this.add(NM.class, true, 1, 20, new Object[]{ getMessage() }, "Give Amount - Minimum");
94 this.add(NM.class, false, 1, 20, new Object[]{ getMessage() }, "Give Amount - Maximum");
95 this.add(CE.class, true, 1, 250, new Object[]{ getMessage() }, "Give Units");
96 this.add(CE.class, false, 1, 250, new Object[]{ getMessage() }, "Give Dosage Form");
97 this.add(CE.class, false, 0, 250, new Object[]{ getMessage() }, "Administration Notes");
98 this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), new Integer(167) }, "Substitution Status");
99 this.add(LA2.class, false, 1, 200, new Object[]{ getMessage() }, "Dispense-To Location");
100 this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), new Integer(136) }, "Needs Human Review");
101 this.add(CE.class, false, 0, 250, new Object[]{ getMessage() }, "Pharmacy/Treatment Supplier's Special Administration Instructions");
102 this.add(ST.class, false, 1, 20, new Object[]{ getMessage() }, "Give Per (Time Unit)");
103 this.add(ST.class, false, 1, 6, new Object[]{ getMessage() }, "Give Rate Amount");
104 this.add(CE.class, false, 1, 250, new Object[]{ getMessage() }, "Give Rate Units");
105 this.add(NM.class, false, 1, 20, new Object[]{ getMessage() }, "Give Strength");
106 this.add(CE.class, false, 1, 250, new Object[]{ getMessage() }, "Give Strength Units");
107 this.add(ST.class, false, 0, 20, new Object[]{ getMessage() }, "Substance Lot Number");
108 this.add(TS.class, false, 0, 26, new Object[]{ getMessage() }, "Substance Expiration Date");
109 this.add(CE.class, false, 0, 250, new Object[]{ getMessage() }, "Substance Manufacturer Name");
110 this.add(CE.class, false, 0, 250, new Object[]{ getMessage() }, "Indication");
111 } catch(HL7Exception e) {
112 log.error("Unexpected error creating RXG - this is probably a bug in the source code generator.", e);
113 }
114 }
115
116
117
118
119
120
121
122 public NM getGiveSubIDCounter() {
123 NM retVal = this.getTypedField(1, 0);
124 return retVal;
125 }
126
127
128
129
130
131 public NM getRxg1_GiveSubIDCounter() {
132 NM retVal = this.getTypedField(1, 0);
133 return retVal;
134 }
135
136
137
138
139
140
141
142 public NM getDispenseSubIDCounter() {
143 NM retVal = this.getTypedField(2, 0);
144 return retVal;
145 }
146
147
148
149
150
151 public NM getRxg2_DispenseSubIDCounter() {
152 NM retVal = this.getTypedField(2, 0);
153 return retVal;
154 }
155
156
157
158
159
160
161
162 public TQ getQuantityTiming() {
163 TQ retVal = this.getTypedField(3, 0);
164 return retVal;
165 }
166
167
168
169
170
171 public TQ getRxg3_QuantityTiming() {
172 TQ retVal = this.getTypedField(3, 0);
173 return retVal;
174 }
175
176
177
178
179
180
181
182 public CE getGiveCode() {
183 CE retVal = this.getTypedField(4, 0);
184 return retVal;
185 }
186
187
188
189
190
191 public CE getRxg4_GiveCode() {
192 CE retVal = this.getTypedField(4, 0);
193 return retVal;
194 }
195
196
197
198
199
200
201
202 public NM getGiveAmountMinimum() {
203 NM retVal = this.getTypedField(5, 0);
204 return retVal;
205 }
206
207
208
209
210
211 public NM getRxg5_GiveAmountMinimum() {
212 NM retVal = this.getTypedField(5, 0);
213 return retVal;
214 }
215
216
217
218
219
220
221
222 public NM getGiveAmountMaximum() {
223 NM retVal = this.getTypedField(6, 0);
224 return retVal;
225 }
226
227
228
229
230
231 public NM getRxg6_GiveAmountMaximum() {
232 NM retVal = this.getTypedField(6, 0);
233 return retVal;
234 }
235
236
237
238
239
240
241
242 public CE getGiveUnits() {
243 CE retVal = this.getTypedField(7, 0);
244 return retVal;
245 }
246
247
248
249
250
251 public CE getRxg7_GiveUnits() {
252 CE retVal = this.getTypedField(7, 0);
253 return retVal;
254 }
255
256
257
258
259
260
261
262 public CE getGiveDosageForm() {
263 CE retVal = this.getTypedField(8, 0);
264 return retVal;
265 }
266
267
268
269
270
271 public CE getRxg8_GiveDosageForm() {
272 CE retVal = this.getTypedField(8, 0);
273 return retVal;
274 }
275
276
277
278
279
280 public CE[] getAdministrationNotes() {
281 CE[] retVal = this.getTypedField(9, new CE[0]);
282 return retVal;
283 }
284
285
286
287
288
289 public CE[] getRxg9_AdministrationNotes() {
290 CE[] retVal = this.getTypedField(9, new CE[0]);
291 return retVal;
292 }
293
294
295
296
297
298
299
300 public int getAdministrationNotesReps() {
301 return this.getReps(9);
302 }
303
304
305
306
307
308
309
310
311 public CE getAdministrationNotes(int rep) {
312 CE retVal = this.getTypedField(9, rep);
313 return retVal;
314 }
315
316
317
318
319
320
321
322 public CE getRxg9_AdministrationNotes(int rep) {
323 CE retVal = this.getTypedField(9, rep);
324 return retVal;
325 }
326
327
328
329
330
331
332 public int getRxg9_AdministrationNotesReps() {
333 return this.getReps(9);
334 }
335
336
337
338
339
340
341
342
343
344 public CE insertAdministrationNotes(int rep) throws HL7Exception {
345 return (CE) super.insertRepetition(9, rep);
346 }
347
348
349
350
351
352
353
354
355
356 public CE insertRxg9_AdministrationNotes(int rep) throws HL7Exception {
357 return (CE) super.insertRepetition(9, rep);
358 }
359
360
361
362
363
364
365
366
367
368 public CE removeAdministrationNotes(int rep) throws HL7Exception {
369 return (CE) super.removeRepetition(9, rep);
370 }
371
372
373
374
375
376
377
378
379
380 public CE removeRxg9_AdministrationNotes(int rep) throws HL7Exception {
381 return (CE) super.removeRepetition(9, rep);
382 }
383
384
385
386
387
388
389
390
391 public ID getSubstitutionStatus() {
392 ID retVal = this.getTypedField(10, 0);
393 return retVal;
394 }
395
396
397
398
399
400 public ID getRxg10_SubstitutionStatus() {
401 ID retVal = this.getTypedField(10, 0);
402 return retVal;
403 }
404
405
406
407
408
409
410
411 public LA2 getDispenseToLocation() {
412 LA2 retVal = this.getTypedField(11, 0);
413 return retVal;
414 }
415
416
417
418
419
420 public LA2 getRxg11_DispenseToLocation() {
421 LA2 retVal = this.getTypedField(11, 0);
422 return retVal;
423 }
424
425
426
427
428
429
430
431 public ID getNeedsHumanReview() {
432 ID retVal = this.getTypedField(12, 0);
433 return retVal;
434 }
435
436
437
438
439
440 public ID getRxg12_NeedsHumanReview() {
441 ID retVal = this.getTypedField(12, 0);
442 return retVal;
443 }
444
445
446
447
448
449 public CE[] getPharmacyTreatmentSupplierSSpecialAdministrationInstructions() {
450 CE[] retVal = this.getTypedField(13, new CE[0]);
451 return retVal;
452 }
453
454
455
456
457
458 public CE[] getRxg13_PharmacyTreatmentSupplierSSpecialAdministrationInstructions() {
459 CE[] retVal = this.getTypedField(13, new CE[0]);
460 return retVal;
461 }
462
463
464
465
466
467
468
469 public int getPharmacyTreatmentSupplierSSpecialAdministrationInstructionsReps() {
470 return this.getReps(13);
471 }
472
473
474
475
476
477
478
479
480 public CE getPharmacyTreatmentSupplierSSpecialAdministrationInstructions(int rep) {
481 CE retVal = this.getTypedField(13, rep);
482 return retVal;
483 }
484
485
486
487
488
489
490
491 public CE getRxg13_PharmacyTreatmentSupplierSSpecialAdministrationInstructions(int rep) {
492 CE retVal = this.getTypedField(13, rep);
493 return retVal;
494 }
495
496
497
498
499
500
501 public int getRxg13_PharmacyTreatmentSupplierSSpecialAdministrationInstructionsReps() {
502 return this.getReps(13);
503 }
504
505
506
507
508
509
510
511
512
513 public CE insertPharmacyTreatmentSupplierSSpecialAdministrationInstructions(int rep) throws HL7Exception {
514 return (CE) super.insertRepetition(13, rep);
515 }
516
517
518
519
520
521
522
523
524
525 public CE insertRxg13_PharmacyTreatmentSupplierSSpecialAdministrationInstructions(int rep) throws HL7Exception {
526 return (CE) super.insertRepetition(13, rep);
527 }
528
529
530
531
532
533
534
535
536
537 public CE removePharmacyTreatmentSupplierSSpecialAdministrationInstructions(int rep) throws HL7Exception {
538 return (CE) super.removeRepetition(13, rep);
539 }
540
541
542
543
544
545
546
547
548
549 public CE removeRxg13_PharmacyTreatmentSupplierSSpecialAdministrationInstructions(int rep) throws HL7Exception {
550 return (CE) super.removeRepetition(13, rep);
551 }
552
553
554
555
556
557
558
559
560 public ST getGivePerTimeUnit() {
561 ST retVal = this.getTypedField(14, 0);
562 return retVal;
563 }
564
565
566
567
568
569 public ST getRxg14_GivePerTimeUnit() {
570 ST retVal = this.getTypedField(14, 0);
571 return retVal;
572 }
573
574
575
576
577
578
579
580 public ST getGiveRateAmount() {
581 ST retVal = this.getTypedField(15, 0);
582 return retVal;
583 }
584
585
586
587
588
589 public ST getRxg15_GiveRateAmount() {
590 ST retVal = this.getTypedField(15, 0);
591 return retVal;
592 }
593
594
595
596
597
598
599
600 public CE getGiveRateUnits() {
601 CE retVal = this.getTypedField(16, 0);
602 return retVal;
603 }
604
605
606
607
608
609 public CE getRxg16_GiveRateUnits() {
610 CE retVal = this.getTypedField(16, 0);
611 return retVal;
612 }
613
614
615
616
617
618
619
620 public NM getGiveStrength() {
621 NM retVal = this.getTypedField(17, 0);
622 return retVal;
623 }
624
625
626
627
628
629 public NM getRxg17_GiveStrength() {
630 NM retVal = this.getTypedField(17, 0);
631 return retVal;
632 }
633
634
635
636
637
638
639
640 public CE getGiveStrengthUnits() {
641 CE retVal = this.getTypedField(18, 0);
642 return retVal;
643 }
644
645
646
647
648
649 public CE getRxg18_GiveStrengthUnits() {
650 CE retVal = this.getTypedField(18, 0);
651 return retVal;
652 }
653
654
655
656
657
658 public ST[] getSubstanceLotNumber() {
659 ST[] retVal = this.getTypedField(19, new ST[0]);
660 return retVal;
661 }
662
663
664
665
666
667 public ST[] getRxg19_SubstanceLotNumber() {
668 ST[] retVal = this.getTypedField(19, new ST[0]);
669 return retVal;
670 }
671
672
673
674
675
676
677
678 public int getSubstanceLotNumberReps() {
679 return this.getReps(19);
680 }
681
682
683
684
685
686
687
688
689 public ST getSubstanceLotNumber(int rep) {
690 ST retVal = this.getTypedField(19, rep);
691 return retVal;
692 }
693
694
695
696
697
698
699
700 public ST getRxg19_SubstanceLotNumber(int rep) {
701 ST retVal = this.getTypedField(19, rep);
702 return retVal;
703 }
704
705
706
707
708
709
710 public int getRxg19_SubstanceLotNumberReps() {
711 return this.getReps(19);
712 }
713
714
715
716
717
718
719
720
721
722 public ST insertSubstanceLotNumber(int rep) throws HL7Exception {
723 return (ST) super.insertRepetition(19, rep);
724 }
725
726
727
728
729
730
731
732
733
734 public ST insertRxg19_SubstanceLotNumber(int rep) throws HL7Exception {
735 return (ST) super.insertRepetition(19, rep);
736 }
737
738
739
740
741
742
743
744
745
746 public ST removeSubstanceLotNumber(int rep) throws HL7Exception {
747 return (ST) super.removeRepetition(19, rep);
748 }
749
750
751
752
753
754
755
756
757
758 public ST removeRxg19_SubstanceLotNumber(int rep) throws HL7Exception {
759 return (ST) super.removeRepetition(19, rep);
760 }
761
762
763
764
765
766
767 public TS[] getSubstanceExpirationDate() {
768 TS[] retVal = this.getTypedField(20, new TS[0]);
769 return retVal;
770 }
771
772
773
774
775
776 public TS[] getRxg20_SubstanceExpirationDate() {
777 TS[] retVal = this.getTypedField(20, new TS[0]);
778 return retVal;
779 }
780
781
782
783
784
785
786
787 public int getSubstanceExpirationDateReps() {
788 return this.getReps(20);
789 }
790
791
792
793
794
795
796
797
798 public TS getSubstanceExpirationDate(int rep) {
799 TS retVal = this.getTypedField(20, rep);
800 return retVal;
801 }
802
803
804
805
806
807
808
809 public TS getRxg20_SubstanceExpirationDate(int rep) {
810 TS retVal = this.getTypedField(20, rep);
811 return retVal;
812 }
813
814
815
816
817
818
819 public int getRxg20_SubstanceExpirationDateReps() {
820 return this.getReps(20);
821 }
822
823
824
825
826
827
828
829
830
831 public TS insertSubstanceExpirationDate(int rep) throws HL7Exception {
832 return (TS) super.insertRepetition(20, rep);
833 }
834
835
836
837
838
839
840
841
842
843 public TS insertRxg20_SubstanceExpirationDate(int rep) throws HL7Exception {
844 return (TS) super.insertRepetition(20, rep);
845 }
846
847
848
849
850
851
852
853
854
855 public TS removeSubstanceExpirationDate(int rep) throws HL7Exception {
856 return (TS) super.removeRepetition(20, rep);
857 }
858
859
860
861
862
863
864
865
866
867 public TS removeRxg20_SubstanceExpirationDate(int rep) throws HL7Exception {
868 return (TS) super.removeRepetition(20, rep);
869 }
870
871
872
873
874
875
876 public CE[] getSubstanceManufacturerName() {
877 CE[] retVal = this.getTypedField(21, new CE[0]);
878 return retVal;
879 }
880
881
882
883
884
885 public CE[] getRxg21_SubstanceManufacturerName() {
886 CE[] retVal = this.getTypedField(21, new CE[0]);
887 return retVal;
888 }
889
890
891
892
893
894
895
896 public int getSubstanceManufacturerNameReps() {
897 return this.getReps(21);
898 }
899
900
901
902
903
904
905
906
907 public CE getSubstanceManufacturerName(int rep) {
908 CE retVal = this.getTypedField(21, rep);
909 return retVal;
910 }
911
912
913
914
915
916
917
918 public CE getRxg21_SubstanceManufacturerName(int rep) {
919 CE retVal = this.getTypedField(21, rep);
920 return retVal;
921 }
922
923
924
925
926
927
928 public int getRxg21_SubstanceManufacturerNameReps() {
929 return this.getReps(21);
930 }
931
932
933
934
935
936
937
938
939
940 public CE insertSubstanceManufacturerName(int rep) throws HL7Exception {
941 return (CE) super.insertRepetition(21, rep);
942 }
943
944
945
946
947
948
949
950
951
952 public CE insertRxg21_SubstanceManufacturerName(int rep) throws HL7Exception {
953 return (CE) super.insertRepetition(21, rep);
954 }
955
956
957
958
959
960
961
962
963
964 public CE removeSubstanceManufacturerName(int rep) throws HL7Exception {
965 return (CE) super.removeRepetition(21, rep);
966 }
967
968
969
970
971
972
973
974
975
976 public CE removeRxg21_SubstanceManufacturerName(int rep) throws HL7Exception {
977 return (CE) super.removeRepetition(21, rep);
978 }
979
980
981
982
983
984
985 public CE[] getIndication() {
986 CE[] retVal = this.getTypedField(22, new CE[0]);
987 return retVal;
988 }
989
990
991
992
993
994 public CE[] getRxg22_Indication() {
995 CE[] retVal = this.getTypedField(22, new CE[0]);
996 return retVal;
997 }
998
999
1000
1001
1002
1003
1004
1005 public int getIndicationReps() {
1006 return this.getReps(22);
1007 }
1008
1009
1010
1011
1012
1013
1014
1015
1016 public CE getIndication(int rep) {
1017 CE retVal = this.getTypedField(22, rep);
1018 return retVal;
1019 }
1020
1021
1022
1023
1024
1025
1026
1027 public CE getRxg22_Indication(int rep) {
1028 CE retVal = this.getTypedField(22, rep);
1029 return retVal;
1030 }
1031
1032
1033
1034
1035
1036
1037 public int getRxg22_IndicationReps() {
1038 return this.getReps(22);
1039 }
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049 public CE insertIndication(int rep) throws HL7Exception {
1050 return (CE) super.insertRepetition(22, rep);
1051 }
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061 public CE insertRxg22_Indication(int rep) throws HL7Exception {
1062 return (CE) super.insertRepetition(22, rep);
1063 }
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073 public CE removeIndication(int rep) throws HL7Exception {
1074 return (CE) super.removeRepetition(22, rep);
1075 }
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085 public CE removeRxg22_Indication(int rep) throws HL7Exception {
1086 return (CE) super.removeRepetition(22, rep);
1087 }
1088
1089
1090
1091
1092
1093
1094
1095 protected Type createNewTypeWithoutReflection(int field) {
1096 switch (field) {
1097 case 0: return new NM(getMessage());
1098 case 1: return new NM(getMessage());
1099 case 2: return new TQ(getMessage());
1100 case 3: return new CE(getMessage());
1101 case 4: return new NM(getMessage());
1102 case 5: return new NM(getMessage());
1103 case 6: return new CE(getMessage());
1104 case 7: return new CE(getMessage());
1105 case 8: return new CE(getMessage());
1106 case 9: return new ID(getMessage(), new Integer( 167 ));
1107 case 10: return new LA2(getMessage());
1108 case 11: return new ID(getMessage(), new Integer( 136 ));
1109 case 12: return new CE(getMessage());
1110 case 13: return new ST(getMessage());
1111 case 14: return new ST(getMessage());
1112 case 15: return new CE(getMessage());
1113 case 16: return new NM(getMessage());
1114 case 17: return new CE(getMessage());
1115 case 18: return new ST(getMessage());
1116 case 19: return new TS(getMessage());
1117 case 20: return new CE(getMessage());
1118 case 21: return new CE(getMessage());
1119 default: return null;
1120 }
1121 }
1122
1123
1124 }
1125