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    
008    package ca.uhn.hl7v2.model.v231.group;
009    
010    import ca.uhn.hl7v2.model.v231.segment.*;
011    
012    import ca.uhn.log.HapiLogFactory;
013    import ca.uhn.hl7v2.HL7Exception;
014    import ca.uhn.hl7v2.parser.ModelClassFactory;
015    import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
016    import ca.uhn.hl7v2.model.AbstractMessage;
017    import ca.uhn.hl7v2.model.Group;
018    import ca.uhn.hl7v2.model.AbstractGroup;
019    import ca.uhn.hl7v2.model.GenericSegment;
020    
021    /**
022     * <p>Represents a ORD_O02_PIDNTEORCODSNTEORCODTNTE group structure (a Group object).
023     * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
024     * This Group contains the following elements:  
025     * </p>
026     * <ul>
027                     * <li>1: ORD_O02_PIDNTE (a Group object) <b>optional </b></li>
028                     * <li>2: ORD_O02_ORCODSNTE (a Group object) <b> repeating</b></li>
029                     * <li>3: ORD_O02_ORCODTNTE (a Group object) <b>optional repeating</b></li>
030     * </ul>
031     */
032    public class ORD_O02_PIDNTEORCODSNTEORCODTNTE extends AbstractGroup {
033    
034        /** 
035         * Creates a new ORD_O02_PIDNTEORCODSNTEORCODTNTE group
036         */
037        public ORD_O02_PIDNTEORCODSNTEORCODTNTE(Group parent, ModelClassFactory factory) {
038           super(parent, factory);
039           init(factory);
040        }
041    
042        private void init(ModelClassFactory factory) {
043           try {
044                              this.add(ORD_O02_PIDNTE.class, false, false);
045                              this.add(ORD_O02_ORCODSNTE.class, true, true);
046                              this.add(ORD_O02_ORCODTNTE.class, false, true);
047           } catch(HL7Exception e) {
048              HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error creating ORD_O02_PIDNTEORCODSNTEORCODTNTE - this is probably a bug in the source code generator.", e);
049           }
050        }
051    
052        /** 
053         * Returns "2.3.1"
054         */
055        public String getVersion() {
056           return "2.3.1";
057        }
058    
059    
060    
061        /**
062         * Returns
063         * PIDNTE (a Group object) - creates it if necessary
064         */
065        public ORD_O02_PIDNTE getPIDNTE() { 
066           ORD_O02_PIDNTE ret = null;
067           try {
068              ret = (ORD_O02_PIDNTE)this.get("PIDNTE");
069           } catch(HL7Exception e) {
070              HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
071              throw new RuntimeException(e);
072           }
073           return ret;
074        }
075    
076    
077    
078    
079        /**
080         * Returns
081         * the first repetition of 
082         * ORCODSNTE (a Group object) - creates it if necessary
083         */
084        public ORD_O02_ORCODSNTE getORCODSNTE() { 
085           ORD_O02_ORCODSNTE ret = null;
086           try {
087              ret = (ORD_O02_ORCODSNTE)this.get("ORCODSNTE");
088           } catch(HL7Exception e) {
089              HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
090              throw new RuntimeException(e);
091           }
092           return ret;
093        }
094    
095    
096        /**
097         * Returns a specific repetition of
098         * ORCODSNTE (a Group object) - creates it if necessary
099         *
100         * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
101         * @throws HL7Exception if the repetition requested is more than one 
102         *     greater than the number of existing repetitions.
103         */
104        public ORD_O02_ORCODSNTE getORCODSNTE(int rep) { 
105           ORD_O02_ORCODSNTE ret = null;
106           try {
107              ret = (ORD_O02_ORCODSNTE)this.get("ORCODSNTE", rep);
108           } catch(HL7Exception e) {
109              HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
110              throw new RuntimeException(e);
111           }
112           return ret;
113        }
114    
115        /** 
116         * Returns the number of existing repetitions of ORCODSNTE 
117         */ 
118        public int getORCODSNTEReps() { 
119            int reps = -1; 
120            try { 
121                reps = this.getAll("ORCODSNTE").length; 
122            } catch (HL7Exception e) { 
123                String message = "Unexpected error accessing data - this is probably a bug in the source code generator."; 
124                HapiLogFactory.getHapiLog(this.getClass()).error(message, e); 
125                throw new RuntimeException(message);
126            } 
127            return reps; 
128        } 
129    
130        /**
131         * Inserts a specific repetition of ORCODSNTE (a Group object)
132         * @see AbstractGroup#insertRepetition(Structure, int) 
133         */
134        public void insertORCODSNTE(ORD_O02_ORCODSNTE structure, int rep) throws HL7Exception { 
135           super.insertRepetition("ORCODSNTE", structure, rep);
136        }
137    
138    
139        /**
140         * Inserts a specific repetition of ORCODSNTE (a Group object)
141         * @see AbstractGroup#insertRepetition(Structure, int) 
142         */
143        public ORD_O02_ORCODSNTE insertORCODSNTE(int rep) throws HL7Exception { 
144           return (ORD_O02_ORCODSNTE)super.insertRepetition("ORCODSNTE", rep);
145        }
146    
147    
148        /**
149         * Removes a specific repetition of ORCODSNTE (a Group object)
150         * @see AbstractGroup#removeRepetition(String, int) 
151         */
152        public ORD_O02_ORCODSNTE removeORCODSNTE(int rep) throws HL7Exception { 
153           return (ORD_O02_ORCODSNTE)super.removeRepetition("ORCODSNTE", rep);
154        }
155    
156    
157    
158        /**
159         * Returns
160         * the first repetition of 
161         * ORCODTNTE (a Group object) - creates it if necessary
162         */
163        public ORD_O02_ORCODTNTE getORCODTNTE() { 
164           ORD_O02_ORCODTNTE ret = null;
165           try {
166              ret = (ORD_O02_ORCODTNTE)this.get("ORCODTNTE");
167           } catch(HL7Exception e) {
168              HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
169              throw new RuntimeException(e);
170           }
171           return ret;
172        }
173    
174    
175        /**
176         * Returns a specific repetition of
177         * ORCODTNTE (a Group object) - creates it if necessary
178         *
179         * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
180         * @throws HL7Exception if the repetition requested is more than one 
181         *     greater than the number of existing repetitions.
182         */
183        public ORD_O02_ORCODTNTE getORCODTNTE(int rep) { 
184           ORD_O02_ORCODTNTE ret = null;
185           try {
186              ret = (ORD_O02_ORCODTNTE)this.get("ORCODTNTE", rep);
187           } catch(HL7Exception e) {
188              HapiLogFactory.getHapiLog(this.getClass()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
189              throw new RuntimeException(e);
190           }
191           return ret;
192        }
193    
194        /** 
195         * Returns the number of existing repetitions of ORCODTNTE 
196         */ 
197        public int getORCODTNTEReps() { 
198            int reps = -1; 
199            try { 
200                reps = this.getAll("ORCODTNTE").length; 
201            } catch (HL7Exception e) { 
202                String message = "Unexpected error accessing data - this is probably a bug in the source code generator."; 
203                HapiLogFactory.getHapiLog(this.getClass()).error(message, e); 
204                throw new RuntimeException(message);
205            } 
206            return reps; 
207        } 
208    
209        /**
210         * Inserts a specific repetition of ORCODTNTE (a Group object)
211         * @see AbstractGroup#insertRepetition(Structure, int) 
212         */
213        public void insertORCODTNTE(ORD_O02_ORCODTNTE structure, int rep) throws HL7Exception { 
214           super.insertRepetition("ORCODTNTE", structure, rep);
215        }
216    
217    
218        /**
219         * Inserts a specific repetition of ORCODTNTE (a Group object)
220         * @see AbstractGroup#insertRepetition(Structure, int) 
221         */
222        public ORD_O02_ORCODTNTE insertORCODTNTE(int rep) throws HL7Exception { 
223           return (ORD_O02_ORCODTNTE)super.insertRepetition("ORCODTNTE", rep);
224        }
225    
226    
227        /**
228         * Removes a specific repetition of ORCODTNTE (a Group object)
229         * @see AbstractGroup#removeRepetition(String, int) 
230         */
231        public ORD_O02_ORCODTNTE removeORCODTNTE(int rep) throws HL7Exception { 
232           return (ORD_O02_ORCODTNTE)super.removeRepetition("ORCODTNTE", rep);
233        }
234    
235    
236    
237    }
238