Uses of Class
ca.uhn.hl7v2.model.DataTypeException

Packages that use DataTypeException
ca.uhn.hl7v2.model   
ca.uhn.hl7v2.model.primitive   
ca.uhn.hl7v2.parser   
ca.uhn.hl7v2.util   
 

Uses of DataTypeException in ca.uhn.hl7v2.model
 

Methods in ca.uhn.hl7v2.model that throw DataTypeException
 Type Composite.getComponent(int number)
          Returns the single component of this composite at the specified position (starting at 0).
 Type GenericComposite.getComponent(int number)
          Returns the single component of this composite at the specified position (starting at 0) - Creates it (and any nonexistent components before it) if necessary.
 void Varies.setData(Type data)
          Sets the data contained by this instance of Varies.
 void Primitive.setValue(java.lang.String value)
          Sets the value of this field if the given value is legal in the context of the implementing class.
 void AbstractPrimitive.setValue(java.lang.String theValue)
          Sets the value of this Primitive, first performing validation as specified by getMessage().getValidationContext().
 void GenericPrimitive.setValue(java.lang.String value)
          Sets the value of this field if the given value is legal in the context of the implementing class.
 

Uses of DataTypeException in ca.uhn.hl7v2.model.primitive
 

Methods in ca.uhn.hl7v2.model.primitive that throw DataTypeException
 int DT.getDay()
          Returns the day as an integer.
 int TSComponentOne.getDay()
          Returns the day as an integer.
 float TSComponentOne.getFractSecond()
          Returns the fractional second value as a float.
 float TM.getFractSecond()
          Returns the fractional second value as a float.
 int TSComponentOne.getGMTOffset()
          Returns the GMT offset value as an integer.
 int TM.getGMTOffset()
          Returns the GMT offset value as an integer.
 int TSComponentOne.getHour()
          Returns the hour as an integer.
 int TM.getHour()
          Returns the hour as an integer.
 int TSComponentOne.getMinute()
          Returns the minute as an integer.
 int TM.getMinute()
          Returns the minute as an integer.
 int DT.getMonth()
          Returns the month as an integer.
 int TSComponentOne.getMonth()
          Returns the month as an integer.
 int TSComponentOne.getSecond()
          Returns the second as an integer.
 int TM.getSecond()
          Returns the second as an integer.
 int DT.getYear()
          Returns the year as an integer.
 int TSComponentOne.getYear()
          Returns the year as an integer.
 void CommonTS.setDateMinutePrecision(int yr, int mnth, int dy, int hr, int min)
          This method takes in integer values for the year, month, day, hour and minute and performs validations, it then sets the value in the object formatted as an HL7 Time Stamp value with year&month&day&hour&minute precision (YYYYMMDDHHMM).
 void TSComponentOne.setDateMinutePrecision(int yr, int mnth, int dy, int hr, int min)
           
 void CommonTS.setDatePrecision(int yr, int mnth, int dy)
          This method takes in integer values for the year and month and day and performs validations, it then sets the value in the object formatted as an HL7 Time Stamp value with year&month&day precision (YYYYMMDD).
 void TSComponentOne.setDatePrecision(int yr, int mnth, int dy)
           
 void CommonTS.setDateSecondPrecision(int yr, int mnth, int dy, int hr, int min, float sec)
          This method takes in integer values for the year, month, day, hour, minute, seconds, and fractional seconds (going to the tenthousandths precision).
 void TSComponentOne.setDateSecondPrecision(int yr, int mnth, int dy, int hr, int min, float sec)
           
 void CommonTM.setHourMinSecondPrecision(int hr, int min, float sec)
          This method takes in integer values for the hour, minute, seconds, and fractional seconds (going to the tenthousandths precision).
 void TM.setHourMinSecondPrecision(int hr, int min, float sec)
           
 void CommonTM.setHourMinutePrecision(int hr, int min)
          This method takes in integer values for the hour and minute and performs validations, it then sets the value field formatted as an HL7 time value with hour&minute precision (HHMM).
 void TM.setHourMinutePrecision(int hr, int min)
           
 void CommonTM.setHourPrecision(int hr)
          This method takes in an integer value for the hour and performs validations, it then sets the value field formatted as an HL7 time value with hour precision (HH).
 void TM.setHourPrecision(int hr)
           
 void CommonTS.setOffset(int signedOffset)
          This method takes in the four digit (signed) GMT offset and sets the offset field
 void CommonTM.setOffset(int signedOffset)
          This method takes in the four digit (signed) GMT offset and sets the offset field
 void TSComponentOne.setOffset(int signedOffset)
           
 void TM.setOffset(int signedOffset)
           
 void CommonDT.setValue(java.lang.String val)
          This method takes in a string HL7 date value and performs validations then sets the value field.
 void CommonTS.setValue(java.lang.String val)
          This method takes in a string HL7 Time Stamp value and performs validations.
 void CommonTM.setValue(java.lang.String val)
          This method takes in a string HL7 Time value and performs validations then sets the value field.
 void DT.setValue(java.lang.String theValue)
           
 void TSComponentOne.setValue(java.lang.String theValue)
           
 void TM.setValue(java.lang.String theValue)
           
 void CommonDT.setYearMonthDayPrecision(int yr, int mnth, int dy)
          This method takes in integer values for the year and month and day and performs validations, it then sets the value in the object formatted as an HL7 date value with year&month&day precision (YYYYMMDD).
 void DT.setYearMonthDayPrecision(int yr, int mnth, int dy)
           
 void CommonDT.setYearMonthPrecision(int yr, int mnth)
          This method takes in integer values for the year and month and performs validations, it then sets the value field formatted as an HL7 date value with year&month precision (YYYYMM).
 void DT.setYearMonthPrecision(int yr, int mnth)
           
 void CommonDT.setYearPrecision(int yr)
          This method takes in an integer value for the year and performs validations, it then sets the value field formatted as an HL7 date.
 void DT.setYearPrecision(int yr)
           
static java.lang.String CommonDT.toHl7DTFormat(java.util.GregorianCalendar cal)
          Returns a string value representing the input Gregorian Calendar object in an Hl7 Date Format.
static java.lang.String CommonTM.toHl7TMFormat(java.util.GregorianCalendar cal)
          Returns a string value representing the input Gregorian Calendar object in an Hl7 Time Format.
static java.lang.String CommonTS.toHl7TSFormat(java.util.GregorianCalendar cal)
          Returns a string value representing the input Gregorian Calendar object in an Hl7 TimeStamp Format.
 

Constructors in ca.uhn.hl7v2.model.primitive that throw DataTypeException
CommonDT(java.lang.String val)
          Constructs a DT object with the given value.
CommonTM(java.lang.String val)
          Constructs a TM object with the given value.
CommonTS(java.lang.String val)
          Constructs a TS object with the given value.
 

Uses of DataTypeException in ca.uhn.hl7v2.parser
 

Methods in ca.uhn.hl7v2.parser that throw DataTypeException
 void XMLParser.parse(Type datatypeObject, org.w3c.dom.Element datatypeElement)
          Populates the given Type object with data from the given XML Element.
 

Uses of DataTypeException in ca.uhn.hl7v2.util
 

Methods in ca.uhn.hl7v2.util that throw DataTypeException
static void DeepCopy.copy(Type from, Type to)
          Copies data from the "from" Type into the "to" Type.
 



Copyright © 2001-2011 University Health Network. All Rights Reserved.