/** * Returns a single repetition of Occurrence Code & Date (32-35)(UB2-7). * @param rep the repetition number (this is a repeating field) * @throws HL7Exception if the repetition number is invalid. */ public OCD getOccurrenceCodeDate3235(int rep) { OCD ret = null; try { Type t = this.getField(7, rep); ret = (OCD)t; } catch (System.Exception ex) { HapiLogFactory.getHapiLog(GetType()).error("Unexpected problem obtaining field value. This is a bug.", ex); throw new System.Exception("An unexpected error ocurred", ex); } return(ret); }
/// <summary> Returns a single repetition of Occurrence Code & Date (32-35) (UB2-7).</summary> /// <param name="rep">the repetition number (this is a repeating field) /// </param> /// <throws> HL7Exception if the repetition number is invalid. </throws> public virtual OCD getOccurrenceCodeDate3235(int rep) { OCD ret = null; try { Type t = this.getField(7, rep); ret = (OCD)t; } catch (System.InvalidCastException) { throw new Exception(); } return(ret); }
/** * Returns all repetitions of Occurrence Code & Date (32-35) (UB2-7). */ public OCD[] getOccurrenceCodeDate3235() { OCD[] ret = null; try { Type[] t = this.getField(7); ret = new OCD[t.Length]; for (int i = 0; i < ret.Length; i++) { ret[i] = (OCD)t[i]; } } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new System.Exception("An unexpected error ocurred", he); } catch (System.Exception cce) { HapiLogFactory.getHapiLog(GetType()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new System.Exception("An unexpected error ocurred", cce); } return(ret); }
/// <summary> Returns all repetitions of Occurrence Code & Date (32-35) (UB2-7).</summary> public virtual OCD[] getOccurrenceCodeDate3235() { OCD[] ret = null; try { Type[] t = this.getField(7); ret = new OCD[t.Length]; for (int i = 0; i < ret.Length; i++) { ret[i] = (OCD)t[i]; } } catch (System.InvalidCastException) { throw new Exception(); } catch (NuGenHL7Exception) { throw new Exception(); } return(ret); }