All Implemented Interfaces:
Composite, Type, Visitable, Serializable

public class RFR extends AbstractComposite

Represents an HL7 RFR (Reference Range) data type. This type consists of the following components:

  • Numeric Range (NR)
  • Administrative Sex (IS)
  • Age Range (NR)
  • Gestational Age Range (NR)
  • Species (ST)
  • Race/subspecies (ST)
  • Conditions (TX)
See Also:
  • Constructor Details

    • RFR

      public RFR(Message message)
      Creates a new RFR type
  • Method Details

    • getComponents

      public Type[] getComponents()
      Returns an array containing the data elements.
    • getComponent

      public Type getComponent(int number) throws DataTypeException
      Returns an individual data component.
      Parameters:
      number - The component number (0-indexed)
      Throws:
      DataTypeException - if the given element number is out of range.
    • getNumericRange

      public NR getNumericRange()
      Returns Numeric Range (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getRfr1_NumericRange

      Returns Numeric Range (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getAdministrativeSex

      Returns Administrative Sex (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getRfr2_AdministrativeSex

      Returns Administrative Sex (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getAgeRange

      public NR getAgeRange()
      Returns Age Range (component 3). This is a convenience method that saves you from casting and handling an exception.
    • getRfr3_AgeRange

      public NR getRfr3_AgeRange()
      Returns Age Range (component 3). This is a convenience method that saves you from casting and handling an exception.
    • getGestationalAgeRange

      Returns Gestational Age Range (component 4). This is a convenience method that saves you from casting and handling an exception.
    • getRfr4_GestationalAgeRange

      Returns Gestational Age Range (component 4). This is a convenience method that saves you from casting and handling an exception.
    • getSpecies

      public ST getSpecies()
      Returns Species (component 5). This is a convenience method that saves you from casting and handling an exception.
    • getRfr5_Species

      public ST getRfr5_Species()
      Returns Species (component 5). This is a convenience method that saves you from casting and handling an exception.
    • getRaceSubspecies

      Returns Race/subspecies (component 6). This is a convenience method that saves you from casting and handling an exception.
    • getRfr6_RaceSubspecies

      Returns Race/subspecies (component 6). This is a convenience method that saves you from casting and handling an exception.
    • getConditions

      public TX getConditions()
      Returns Conditions (component 7). This is a convenience method that saves you from casting and handling an exception.
    • getRfr7_Conditions

      Returns Conditions (component 7). This is a convenience method that saves you from casting and handling an exception.