All Implemented Interfaces:
Composite, Type, Visitable, Serializable

public class SCV extends AbstractComposite

Represents an HL7 SCV (Scheduling Class Value Pair) data type. This type consists of the following components:

  • Parameter Class (CWE)
  • Parameter Value (ST)
See Also:
  • Constructor Details

    • SCV

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

      Returns Parameter Class (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getScv1_ParameterClass

      Returns Parameter Class (component 1). This is a convenience method that saves you from casting and handling an exception.
    • getParameterValue

      Returns Parameter Value (component 2). This is a convenience method that saves you from casting and handling an exception.
    • getScv2_ParameterValue

      Returns Parameter Value (component 2). This is a convenience method that saves you from casting and handling an exception.