All Implemented Interfaces:
Composite, Type, Visitable, Serializable

public class ICD extends AbstractComposite

Represents an HL7 ICD (Insurance Certification Definition) data type. This type consists of the following components:

  • Certification Patient Type (IS)
  • Certification Required (ID)
  • Date/Time Certification Required (TS)
See Also:
  • Constructor Details

    • ICD

      public ICD(Message message)
      Creates a new ICD 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.
    • getCertificationPatientType

      Returns Certification Patient Type (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getIcd1_CertificationPatientType

      Returns Certification Patient Type (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getCertificationRequired

      Returns Certification Required (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getIcd2_CertificationRequired

      Returns Certification Required (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getDateTimeCertificationRequired

      Returns Date/Time Certification Required (component 3). This is a convenience method that saves you from casting and handling an exception.
    • getIcd3_DateTimeCertificationRequired

      Returns Date/Time Certification Required (component 3). This is a convenience method that saves you from casting and handling an exception.