All Implemented Interfaces:
Composite, Type, Visitable, Serializable

public class NDL extends AbstractComposite

Represents an HL7 NDL (Name with Date and Location) data type. This type consists of the following components:

  • Name (CNN)
  • Start Date/time (TS)
  • End Date/time (TS)
  • Point of Care (IS)
  • Room (IS)
  • Bed (IS)
  • Facility (HD)
  • Location Status (IS)
  • Patient Location Type (IS)
  • Building (IS)
  • Floor (IS)
See Also:
  • Constructor Details

    • NDL

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

      public CNN getNDLName()
      Returns Name (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getNdl1_Name

      public CNN getNdl1_Name()
      Returns Name (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getStartDateTime

      public TS getStartDateTime()
      Returns Start Date/time (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getNdl2_StartDateTime

      Returns Start Date/time (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getEndDateTime

      public TS getEndDateTime()
      Returns End Date/time (component 3). This is a convenience method that saves you from casting and handling an exception.
    • getNdl3_EndDateTime

      Returns End Date/time (component 3). This is a convenience method that saves you from casting and handling an exception.
    • getPointOfCare

      public IS getPointOfCare()
      Returns Point of Care (component 4). This is a convenience method that saves you from casting and handling an exception.
    • getNdl4_PointOfCare

      Returns Point of Care (component 4). This is a convenience method that saves you from casting and handling an exception.
    • getRoom

      public IS getRoom()
      Returns Room (component 5). This is a convenience method that saves you from casting and handling an exception.
    • getNdl5_Room

      public IS getNdl5_Room()
      Returns Room (component 5). This is a convenience method that saves you from casting and handling an exception.
    • getBed

      public IS getBed()
      Returns Bed (component 6). This is a convenience method that saves you from casting and handling an exception.
    • getNdl6_Bed

      public IS getNdl6_Bed()
      Returns Bed (component 6). This is a convenience method that saves you from casting and handling an exception.
    • getFacility

      public HD getFacility()
      Returns Facility (component 7). This is a convenience method that saves you from casting and handling an exception.
    • getNdl7_Facility

      public HD getNdl7_Facility()
      Returns Facility (component 7). This is a convenience method that saves you from casting and handling an exception.
    • getLocationStatus

      Returns Location Status (component 8). This is a convenience method that saves you from casting and handling an exception.
    • getNdl8_LocationStatus

      Returns Location Status (component 8). This is a convenience method that saves you from casting and handling an exception.
    • getPatientLocationType

      Returns Patient Location Type (component 9). This is a convenience method that saves you from casting and handling an exception.
    • getNdl9_PatientLocationType

      Returns Patient Location Type (component 9). This is a convenience method that saves you from casting and handling an exception.
    • getBuilding

      public IS getBuilding()
      Returns Building (component 10). This is a convenience method that saves you from casting and handling an exception.
    • getNdl10_Building

      Returns Building (component 10). This is a convenience method that saves you from casting and handling an exception.
    • getFloor

      public IS getFloor()
      Returns Floor (component 11). This is a convenience method that saves you from casting and handling an exception.
    • getNdl11_Floor

      public IS getNdl11_Floor()
      Returns Floor (component 11). This is a convenience method that saves you from casting and handling an exception.